Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 973 Bytes

DefaultAggregation.md

File metadata and controls

29 lines (20 loc) · 973 Bytes

DefaultAggregation

Default aggregation method(s) for the series in the query.

Properties

Name Type Description Notes

Example

from waylay.services.queries.models.default_aggregation import DefaultAggregation

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

# convert the object into a dict
default_aggregation_dict = default_aggregation_instance.to_dict()
# create an instance of DefaultAggregation from a dict
default_aggregation_form_dict = default_aggregation.from_dict(default_aggregation_dict)

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