Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

UpdateCustomImageResponse.md

File metadata and controls

30 lines (21 loc) · 1.12 KB

UpdateCustomImageResponse

Properties

Name Type Description Notes
data List[UpdateCustomImageResponseData]
links SelfLinks

Example

from pfruck_contabo.models.update_custom_image_response import UpdateCustomImageResponse

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

# convert the object into a dict
update_custom_image_response_dict = update_custom_image_response_instance.to_dict()
# create an instance of UpdateCustomImageResponse from a dict
update_custom_image_response_from_dict = UpdateCustomImageResponse.from_dict(update_custom_image_response_dict)

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