Name | Type | Description | Notes |
---|---|---|---|
terms | AggTerms | [optional] | |
sort | List[object] | [optional] | |
composite | AggComposite | [optional] |
from manticoresearch.models.aggregation import Aggregation
# create an instance of Aggregation from a JSON string
aggregation_instance = Aggregation.from_json(json)
# print the JSON string representation of the object
print(Aggregation.to_json())
# convert the object into a dict
aggregation_dict = aggregation_instance.to_dict()
# create an instance of Aggregation from a dict
aggregation_from_dict = Aggregation.from_dict(aggregation_dict)