(
self: SyncClientProtocol,
key: KeyT,
from_time: int | str,
to_time: int | str,
count: int | None = None,
aggregation_type: str | list[str] | None = None,
bucket_size_msec: int | None = 0,
filter_by_ts: List[int] | None = None,
filter_by_min_value: int | None = None,
filter_by_max_value: int | None = None,
align: int | str | None = None,
latest: bool | None = False,
bucket_timestamp: str | None = None,
empty: bool | None = False,
)
| 767 | |
| 768 | @overload |
| 769 | def range( |
| 770 | self: SyncClientProtocol, |
| 771 | key: KeyT, |
| 772 | from_time: int | str, |
| 773 | to_time: int | str, |
| 774 | count: int | None = None, |
| 775 | aggregation_type: str | list[str] | None = None, |
| 776 | bucket_size_msec: int | None = 0, |
| 777 | filter_by_ts: List[int] | None = None, |
| 778 | filter_by_min_value: int | None = None, |
| 779 | filter_by_max_value: int | None = None, |
| 780 | align: int | str | None = None, |
| 781 | latest: bool | None = False, |
| 782 | bucket_timestamp: str | None = None, |
| 783 | empty: bool | None = False, |
| 784 | ) -> TimeSeriesRangeResponse: ... |
| 785 | |
| 786 | @overload |
| 787 | def range( |