Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

File metadata and controls

32 lines (23 loc) · 1.04 KB

ImageGetResponse

Properties

Name Type Description Notes
images List[ImageFields] [optional]
logo str [optional]
region_name str [optional]
type str [optional]

Example

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)

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