AggCompositeSource

October 23, 2025 ยท View on GitHub

Object containing terms used for composite aggregation.

Properties

NameTypeDescriptionNotes
termsAggCompositeTerm

Example

from manticoresearch.models.agg_composite_source import AggCompositeSource

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

# convert the object into a dict
agg_composite_source_dict = agg_composite_source_instance.to_dict()
# create an instance of AggCompositeSource from a dict
agg_composite_source_from_dict = AggCompositeSource.from_dict(agg_composite_source_dict)

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