| Name | Type | Description | Notes |
|---|---|---|---|
| images | List[ImageFields] | [optional] | |
| logo | str | [optional] | |
| region_name | str | [optional] | |
| type | str | [optional] |
from hyperstack.models.image_get_response import ImageGetResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ImageGetResponse from a JSON string
image_get_response_instance = ImageGetResponse.from_json(json)
# print the JSON string representation of the object
print(ImageGetResponse.to_json())
# convert the object into a dict
image_get_response_dict = image_get_response_instance.to_dict()
# create an instance of ImageGetResponse from a dict
image_get_response_from_dict = ImageGetResponse.from_dict(image_get_response_dict)