Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 853 Bytes

File metadata and controls

31 lines (22 loc) · 853 Bytes

TagItem

Properties

Name Type Description Notes
name str
origin str
collection_id int [optional]

Example

from revengai.models.tag_item import TagItem

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

# convert the object into a dict
tag_item_dict = tag_item_instance.to_dict()
# create an instance of TagItem from a dict
tag_item_from_dict = TagItem.from_dict(tag_item_dict)

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