Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

File metadata and controls

32 lines (23 loc) · 1.17 KB

CreateTaxonomyRequest

Request model to create a taxonomy.

Properties

Name Type Description Notes
taxonomy_name str A unique name for the taxonomy within the namespace.
description str An optional description of the taxonomy. [optional]
config Config1

Example

from mixpeek.models.create_taxonomy_request import CreateTaxonomyRequest

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

# convert the object into a dict
create_taxonomy_request_dict = create_taxonomy_request_instance.to_dict()
# create an instance of CreateTaxonomyRequest from a dict
create_taxonomy_request_from_dict = CreateTaxonomyRequest.from_dict(create_taxonomy_request_dict)

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