Skip to content

Latest commit

 

History

History
executable file
·
31 lines (22 loc) · 1.05 KB

File metadata and controls

executable file
·
31 lines (22 loc) · 1.05 KB

AggBucketsResult

Aggregation group returned under aggregations

Properties

Name Type Description Notes
buckets object [optional]
after_key object Pagination cursor returned by composite aggregations [optional]

Example

from manticoresearch.models.agg_buckets_result import AggBucketsResult

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

# convert the object into a dict
agg_buckets_result_dict = agg_buckets_result_instance.to_dict()
# create an instance of AggBucketsResult from a dict
agg_buckets_result_from_dict = AggBucketsResult.from_dict(agg_buckets_result_dict)

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