Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 922 Bytes

File metadata and controls

30 lines (21 loc) · 922 Bytes

SecondaryColor

Properties

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

Example

from hyperstack.models.secondary_color import SecondaryColor

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

# convert the object into a dict
secondary_color_dict = secondary_color_instance.to_dict()
# create an instance of SecondaryColor from a dict
secondary_color_from_dict = SecondaryColor.from_dict(secondary_color_dict)

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