Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 901 Bytes

AggregationMethod.md

File metadata and controls

28 lines (19 loc) · 901 Bytes

AggregationMethod

Properties

Name Type Description Notes

Example

from waylay.services.queries.models.aggregation_method import AggregationMethod

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

# convert the object into a dict
aggregation_method_dict = aggregation_method_instance.to_dict()
# create an instance of AggregationMethod from a dict
aggregation_method_form_dict = aggregation_method.from_dict(aggregation_method_dict)

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