Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 832 Bytes

File metadata and controls

28 lines (20 loc) · 832 Bytes

ImageStatus

An enumeration.

Properties

Name Type Description Notes

Example

from timeweb_cloud_api.models.image_status import ImageStatus

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

# convert the object into a dict
image_status_dict = image_status_instance.to_dict()
# create an instance of ImageStatus from a dict
image_status_form_dict = image_status.from_dict(image_status_dict)

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