Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.31 KB

File metadata and controls

33 lines (24 loc) · 1.31 KB

TaxonomyListStats

Aggregate statistics for a list of taxonomies.

Properties

Name Type Description Notes
total_taxonomies int Total number of taxonomies in the result [optional] [default to 0]
flat_taxonomies int Number of flat taxonomies [optional] [default to 0]
hierarchical_taxonomies int Number of hierarchical taxonomies [optional] [default to 0]
taxonomies_with_retrievers int Number of taxonomies with retriever configured [optional] [default to 0]

Example

from mixpeek.models.taxonomy_list_stats import TaxonomyListStats

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

# convert the object into a dict
taxonomy_list_stats_dict = taxonomy_list_stats_instance.to_dict()
# create an instance of TaxonomyListStats from a dict
taxonomy_list_stats_from_dict = TaxonomyListStats.from_dict(taxonomy_list_stats_dict)

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