| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name of the tag | |
| origin | str | Origin of tag |
from revengai.models.tag_response import TagResponse
# TODO update the JSON string below
json = "{}"
# create an instance of TagResponse from a JSON string
tag_response_instance = TagResponse.from_json(json)
# print the JSON string representation of the object
print(TagResponse.to_json())
# convert the object into a dict
tag_response_dict = tag_response_instance.to_dict()
# create an instance of TagResponse from a dict
tag_response_from_dict = TagResponse.from_dict(tag_response_dict)