Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 896 Bytes

File metadata and controls

30 lines (21 loc) · 896 Bytes

PrimaryColor

Properties

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

Example

from hyperstack.models.primary_color import PrimaryColor

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

# convert the object into a dict
primary_color_dict = primary_color_instance.to_dict()
# create an instance of PrimaryColor from a dict
primary_color_from_dict = PrimaryColor.from_dict(primary_color_dict)

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