Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.86 KB

SeriesQueryWithoutAggregatesRequest.md

File metadata and controls

37 lines (28 loc) · 1.86 KB

SeriesQueryWithoutAggregatesRequest

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] [optional]
resources List[str]
max_results int [optional]
filter TimeseriesFilter [optional]
order Order [optional] [default to Order.ASCENDING]

Example

from waylay.services.data.models.series_query_without_aggregates_request import SeriesQueryWithoutAggregatesRequest

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

# convert the object into a dict
series_query_without_aggregates_request_dict = series_query_without_aggregates_request_instance.to_dict()
# create an instance of SeriesQueryWithoutAggregatesRequest from a dict
series_query_without_aggregates_request_form_dict = series_query_without_aggregates_request.from_dict(series_query_without_aggregates_request_dict)

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