Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.65 KB

File metadata and controls

39 lines (30 loc) · 1.65 KB

Theme

Properties

Name Type Description Notes
background_image str [optional] [readonly]
email_template_touch_point_variant EmailTemplateTouchPointVariant [optional]
end_user_dashboard_touch_point_variant EndUserDashboardTouchPointVariant [optional]
error_page_touch_point_variant ErrorPageTouchPointVariant [optional]
loading_page_touch_point_variant LoadingPageTouchPointVariant [optional]
primary_color_contrast_hex str [optional]
primary_color_hex str [optional]
secondary_color_contrast_hex str [optional]
secondary_color_hex str [optional]
sign_in_page_touch_point_variant SignInPageTouchPointVariant [optional]
links LinksSelf [optional]

Example

from okta.models.theme import Theme

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

# convert the object into a dict
theme_dict = theme_instance.to_dict()
# create an instance of Theme from a dict
theme_from_dict = Theme.from_dict(theme_dict)

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