Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.26 KB

File metadata and controls

30 lines (22 loc) · 1.26 KB

CustomColorThemesSettingsColorItem

The custom color theme color parameters.

Properties

Name Type Description Notes
accent str The accent color. [optional]
buttons str The button color. [optional]

Example

from docspace_api_sdk.models.custom_color_themes_settings_color_item import CustomColorThemesSettingsColorItem

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

# convert the object into a dict
custom_color_themes_settings_color_item_dict = custom_color_themes_settings_color_item_instance.to_dict()
# create an instance of CustomColorThemesSettingsColorItem from a dict
custom_color_themes_settings_color_item_from_dict = CustomColorThemesSettingsColorItem.from_dict(custom_color_themes_settings_color_item_dict)

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