Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 875 Bytes

File metadata and controls

32 lines (23 loc) · 875 Bytes

Logos

Properties

Name Type Description Notes
dark str [optional]
email str [optional]
favicon str [optional]
light str [optional]

Example

from hyperstack.models.logos import Logos

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

# convert the object into a dict
logos_dict = logos_instance.to_dict()
# create an instance of Logos from a dict
logos_from_dict = Logos.from_dict(logos_dict)

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