Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

UpdateHashTagResponse

Properties

Name Type Description Notes
status APIStatus
hash_tag TenantHashTag

Example

from client.models.update_hash_tag_response import UpdateHashTagResponse

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

# convert the object into a dict
update_hash_tag_response_dict = update_hash_tag_response_instance.to_dict()
# create an instance of UpdateHashTagResponse from a dict
update_hash_tag_response_from_dict = UpdateHashTagResponse.from_dict(update_hash_tag_response_dict)

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