Name |
Type |
Description |
Notes |
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]