Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 985 Bytes

File metadata and controls

29 lines (20 loc) · 985 Bytes

TagSearchResponse

Properties

Name Type Description Notes
results List[TagSearchResult] The results of the search

Example

from revengai.models.tag_search_response import TagSearchResponse

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

# convert the object into a dict
tag_search_response_dict = tag_search_response_instance.to_dict()
# create an instance of TagSearchResponse from a dict
tag_search_response_from_dict = TagSearchResponse.from_dict(tag_search_response_dict)

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