Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.24 KB

File metadata and controls

33 lines (24 loc) · 1.24 KB

ListTaxonomiesResponse

Response model for listing taxonomies.

Properties

Name Type Description Notes
results List[TaxonomyResponse]
pagination Dict[str, object]
total_count int
stats TaxonomyListStats Aggregate statistics across all taxonomies in the result [optional]

Example

from mixpeek.models.list_taxonomies_response import ListTaxonomiesResponse

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

# convert the object into a dict
list_taxonomies_response_dict = list_taxonomies_response_instance.to_dict()
# create an instance of ListTaxonomiesResponse from a dict
list_taxonomies_response_from_dict = ListTaxonomiesResponse.from_dict(list_taxonomies_response_dict)

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