| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| origin | str | ||
| collection_id | int | [optional] |
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)