Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 997 Bytes

File metadata and controls

29 lines (21 loc) · 997 Bytes

ImageUpdateAPI

Properties

Name Type Description Notes
name object Имя образа. [optional]
description object Описание образа. [optional]

Example

from timeweb_cloud_api.models.image_update_api import ImageUpdateAPI

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

# convert the object into a dict
image_update_api_dict = image_update_api_instance.to_dict()
# create an instance of ImageUpdateAPI from a dict
image_update_api_form_dict = image_update_api.from_dict(image_update_api_dict)

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