Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 932 Bytes

Aggregation.md

File metadata and controls

29 lines (20 loc) · 932 Bytes

Aggregation

Properties

Name Type Description Notes
terms AggTerms [optional]
sort List[object] [optional]
composite AggComposite [optional]

Example

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)

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