Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 879 Bytes

File metadata and controls

30 lines (21 loc) · 879 Bytes

Colors

Properties

Name Type Description Notes
primary PrimaryColor [optional]
secondary SecondaryColor [optional]

Example

from hyperstack.models.colors import Colors

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

# convert the object into a dict
colors_dict = colors_instance.to_dict()
# create an instance of Colors from a dict
colors_from_dict = Colors.from_dict(colors_dict)

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