| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name of the image. | [optional] |
| description | str | Description of the image. | [optional] |
| hardware_type | HardwareType | [optional] | |
| supports | List[str] | Supported features. | [optional] |
| access | ImageAccessLevel | [optional] |
from saturn_api.models.image_update import ImageUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of ImageUpdate from a JSON string
image_update_instance = ImageUpdate.from_json(json)
# print the JSON string representation of the object
print(ImageUpdate.to_json())
# convert the object into a dict
image_update_dict = image_update_instance.to_dict()
# create an instance of ImageUpdate from a dict
image_update_from_dict = ImageUpdate.from_dict(image_update_dict)