Object containing terms used for composite aggregation.
Name | Type | Description | Notes |
---|---|---|---|
terms | AggCompositeTerm |
from manticoresearch.models.agg_composite_source import AggCompositeSource
# 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)