Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.85 KB

MultipleSeriesQueryRequestInner.md

File metadata and controls

38 lines (29 loc) · 1.85 KB

MultipleSeriesQueryRequestInner

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.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)

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