Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

UpdateCustomImageRequest.md

File metadata and controls

30 lines (21 loc) · 1.08 KB

UpdateCustomImageRequest

Properties

Name Type Description Notes
name str Image Name [optional]
description str Image Description [optional]

Example

from pfruck_contabo.models.update_custom_image_request import UpdateCustomImageRequest

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

# convert the object into a dict
update_custom_image_request_dict = update_custom_image_request_instance.to_dict()
# create an instance of UpdateCustomImageRequest from a dict
update_custom_image_request_from_dict = UpdateCustomImageRequest.from_dict(update_custom_image_request_dict)

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