| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name of the image. | |
| owner | OwnerReference | Owner of the image. | [optional] |
| description | str | Description of the image. | [optional] [default to ''] |
| hardware_type | HardwareType | [optional] | |
| supports | List[str] | Supported features. | [optional] |
| access | ImageAccessLevel | [optional] |
from saturn_api.models.image_create import ImageCreate
# TODO update the JSON string below
json = "{}"
# create an instance of ImageCreate from a JSON string
image_create_instance = ImageCreate.from_json(json)
# print the JSON string representation of the object
print(ImageCreate.to_json())
# convert the object into a dict
image_create_dict = image_create_instance.to_dict()
# create an instance of ImageCreate from a dict
image_create_from_dict = ImageCreate.from_dict(image_create_dict)