Skip to content

Aggs

Properties

Name Type Description Notes

Example

from deepsearch.cps.apis.public_v2.models.aggs import Aggs

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

# convert the object into a dict
aggs_dict = aggs_instance.to_dict()
# create an instance of Aggs from a dict
aggs_form_dict = aggs.from_dict(aggs_dict)
[Back to Model list] [Back to API list] [Back to README]