| 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] |
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)