Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 972 Bytes

UpdateTagResponse.md

File metadata and controls

29 lines (20 loc) · 972 Bytes

UpdateTagResponse

Properties

Name Type Description Notes
links SelfLinks Links for easy navigation.

Example

from pfruck_contabo.models.update_tag_response import UpdateTagResponse

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

# convert the object into a dict
update_tag_response_dict = update_tag_response_instance.to_dict()
# create an instance of UpdateTagResponse from a dict
update_tag_response_from_dict = UpdateTagResponse.from_dict(update_tag_response_dict)

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