Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.34 KB

File metadata and controls

39 lines (30 loc) · 1.34 KB

ImageFields

Properties

Name Type Description Notes
description str [optional]
display_size str [optional]
flavor_restrictions FlavorRestrictions Flavor compatibility restrictions for this image [optional]
id int [optional]
is_public bool [optional]
labels List[LableResonse] [optional]
name str [optional]
region_name str [optional]
size int [optional]
type str [optional]
version str [optional]

Example

from hyperstack.models.image_fields import ImageFields

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

# convert the object into a dict
image_fields_dict = image_fields_instance.to_dict()
# create an instance of ImageFields from a dict
image_fields_from_dict = ImageFields.from_dict(image_fields_dict)

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