| Name | Type | Description | Notes |
|---|---|---|---|
| status | bool | [optional] | |
| message | str | [optional] | |
| logos | List[LogoGetResponse] | [optional] |
from hyperstack.models.image_logos import ImageLogos
# TODO update the JSON string below
json = "{}"
# create an instance of ImageLogos from a JSON string
image_logos_instance = ImageLogos.from_json(json)
# print the JSON string representation of the object
print ImageLogos.to_json()
# convert the object into a dict
image_logos_dict = image_logos_instance.to_dict()
# create an instance of ImageLogos from a dict
image_logos_form_dict = image_logos.from_dict(image_logos_dict)