Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.9 KB

File metadata and controls

42 lines (33 loc) · 1.9 KB

ThemeResponse

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]
favicon str [optional] [readonly]
id str [optional] [readonly]
loading_page_touch_point_variant LoadingPageTouchPointVariant [optional]
logo str [optional] [readonly]
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_response import ThemeResponse

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

# convert the object into a dict
theme_response_dict = theme_response_instance.to_dict()
# create an instance of ThemeResponse from a dict
theme_response_from_dict = ThemeResponse.from_dict(theme_response_dict)

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