Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.47 KB

File metadata and controls

33 lines (24 loc) · 1.47 KB

ListTaxonomiesRequest

Request model to list taxonomies.

Properties

Name Type Description Notes
search str Search term for wildcard search across taxonomy_id, taxonomy_name, description, and other text fields [optional]
filters LogicalOperatorInput Filters to apply to the taxonomy list. Supports filtering by taxonomy_id or taxonomy_name. [optional]
sort SortOption Sort configuration for the taxonomy list [optional]
case_sensitive bool If True, filters and search will be case-sensitive [optional] [default to False]

Example

from mixpeek.models.list_taxonomies_request import ListTaxonomiesRequest

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

# convert the object into a dict
list_taxonomies_request_dict = list_taxonomies_request_instance.to_dict()
# create an instance of ListTaxonomiesRequest from a dict
list_taxonomies_request_from_dict = ListTaxonomiesRequest.from_dict(list_taxonomies_request_dict)

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