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] |
from waylay.services.data.models.multiple_series_query_request_inner import MultipleSeriesQueryRequestInner
# TODO update the JSON string below
json = "{}"
# create an instance of MultipleSeriesQueryRequestInner from a JSON string
multiple_series_query_request_inner_instance = MultipleSeriesQueryRequestInner.from_json(json)
# print the JSON string representation of the object
print MultipleSeriesQueryRequestInner.to_json()
# convert the object into a dict
multiple_series_query_request_inner_dict = multiple_series_query_request_inner_instance.to_dict()
# create an instance of MultipleSeriesQueryRequestInner from a dict
multiple_series_query_request_inner_form_dict = multiple_series_query_request_inner.from_dict(multiple_series_query_request_inner_dict)