Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 896 Bytes

File metadata and controls

31 lines (22 loc) · 896 Bytes

Images

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
images List[ImageGetResponse] [optional]

Example

from hyperstack.models.images import Images

# TODO update the JSON string below
json = "{}"
# create an instance of Images from a JSON string
images_instance = Images.from_json(json)
# print the JSON string representation of the object
print Images.to_json()

# convert the object into a dict
images_dict = images_instance.to_dict()
# create an instance of Images from a dict
images_form_dict = images.from_dict(images_dict)

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