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[Aggregate] | ||
grouping | Grouping | [optional] | |
resources | List[str] | ||
max_results | int | [optional] | |
filter | TimeseriesFilter | [optional] | |
order | Order | [optional] [default to Order.ASCENDING] |
from waylay.services.data.models.series_query_request import SeriesQueryRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SeriesQueryRequest from a JSON string
series_query_request_instance = SeriesQueryRequest.from_json(json)
# print the JSON string representation of the object
print SeriesQueryRequest.to_json()
# convert the object into a dict
series_query_request_dict = series_query_request_instance.to_dict()
# create an instance of SeriesQueryRequest from a dict
series_query_request_form_dict = series_query_request.from_dict(series_query_request_dict)