| Name | Type | Description | Notes |
|---|---|---|---|
| images | List[ImageGetResponse] | [optional] | |
| message | str | [optional] | |
| status | bool | [optional] |
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_from_dict = Images.from_dict(images_dict)