Aggregation

October 23, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
termsAggTerms[optional]
sortList[object][optional]
compositeAggComposite[optional]
histogramAggHistogram[optional]

Example

from manticoresearch.models.aggregation import Aggregation

# TODO update the JSON string below
json = "{}"
# 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]