Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 901 Bytes

AggregationsInner.md

File metadata and controls

28 lines (19 loc) · 901 Bytes

AggregationsInner

Properties

Name Type Description Notes

Example

from waylay.services.queries.models.aggregations_inner import AggregationsInner

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

# convert the object into a dict
aggregations_inner_dict = aggregations_inner_instance.to_dict()
# create an instance of AggregationsInner from a dict
aggregations_inner_form_dict = aggregations_inner.from_dict(aggregations_inner_dict)

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