Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 952 Bytes

File metadata and controls

31 lines (22 loc) · 952 Bytes

ImageLogos

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
logos List[LogoGetResponse] [optional]

Example

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)

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