Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 888 Bytes

File metadata and controls

30 lines (21 loc) · 888 Bytes

TagResponse

Properties

Name Type Description Notes
name str Name of the tag
origin str Origin of tag

Example

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)

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