Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.05 KB

File metadata and controls

29 lines (21 loc) · 1.05 KB

ImageDownloadResponse

Properties

Name Type Description Notes
response_id object ID запроса. [optional]
download ImageDownload

Example

from timeweb_cloud_api.models.image_download_response import ImageDownloadResponse

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

# convert the object into a dict
image_download_response_dict = image_download_response_instance.to_dict()
# create an instance of ImageDownloadResponse from a dict
image_download_response_form_dict = image_download_response.from_dict(image_download_response_dict)

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