Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.73 KB

QueryTimeSeriesRequest.md

File metadata and controls

38 lines (29 loc) · 1.73 KB

QueryTimeSeriesRequest

Properties

Name Type Description Notes
var_from SeriesQueryRequestFrom [optional]
until SeriesQueryRequestFrom [optional]
window SeriesQueryRequestWindow [optional]
metric str Key that identifies a single timeseries for a given Resource. Corresponds with the top-level keys of Message Events that are processed by the broker for that Resource.
aggregates List[object]
grouping Grouping [optional]
resources List[str]
max_results int [optional]
filter TimeseriesFilter [optional]
order Order [optional] [default to Order.ASCENDING]

Example

from waylay.services.data.models.query_time_series_request import QueryTimeSeriesRequest

# TODO update the JSON string below
json = "{}"
# create an instance of QueryTimeSeriesRequest from a JSON string
query_time_series_request_instance = QueryTimeSeriesRequest.from_json(json)
# print the JSON string representation of the object
print QueryTimeSeriesRequest.to_json()

# convert the object into a dict
query_time_series_request_dict = query_time_series_request_instance.to_dict()
# create an instance of QueryTimeSeriesRequest from a dict
query_time_series_request_form_dict = query_time_series_request.from_dict(query_time_series_request_dict)

[Back to Model list] [Back to API list] [Back to README]