| Name | Type | Description | Notes |
|---|---|---|---|
| dark | str | [optional] | |
| str | [optional] | ||
| favicon | str | [optional] | |
| light | str | [optional] |
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)