Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 982 Bytes

AggCompositeSource.md

File metadata and controls

28 lines (19 loc) · 982 Bytes

AggCompositeSource

Object containing terms used for composite aggregation.

Properties

Name Type Description Notes
terms AggCompositeTerm

Example

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)

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