Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 2.07 KB

ListImageResponseData.md

File metadata and controls

45 lines (36 loc) · 2.07 KB

ListImageResponseData

Properties

Name Type Description Notes
image_id str Image's id
tenant_id str Your customer tenant id
customer_id str Customer ID
name str Image Name
description str Image Description
url str URL from where the image has been downloaded / provided.
size_mb float Image Size in MB
uploaded_size_mb float Image Uploaded Size in MB
os_type str Type of operating system (OS)
version str Version number to distinguish the contents of an image. Could be the version of the operating system for example.
format str Image format
status str Image status (e.g. if image is still downloading)
error_message str Image download error message
standard_image bool Flag indicating that image is either a standard (true) or a custom image (false)
creation_date datetime The creation date time for the image
last_modified_date datetime The last modified date time for the image
tags List[AssignedTagResponse] The tags assigned to the image

Example

from pfruck_contabo.models.list_image_response_data import ListImageResponseData

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

# convert the object into a dict
list_image_response_data_dict = list_image_response_data_instance.to_dict()
# create an instance of ListImageResponseData from a dict
list_image_response_data_from_dict = ListImageResponseData.from_dict(list_image_response_data_dict)

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