Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

UpdateSignInExp200ResponseColor.md

File metadata and controls

31 lines (22 loc) · 1.18 KB

UpdateSignInExp200ResponseColor

Properties

Name Type Description Notes
primary_color str
is_dark_mode_enabled bool
dark_primary_color str

Example

from py_logto.models.update_sign_in_exp200_response_color import UpdateSignInExp200ResponseColor

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

# convert the object into a dict
update_sign_in_exp200_response_color_dict = update_sign_in_exp200_response_color_instance.to_dict()
# create an instance of UpdateSignInExp200ResponseColor from a dict
update_sign_in_exp200_response_color_from_dict = UpdateSignInExp200ResponseColor.from_dict(update_sign_in_exp200_response_color_dict)

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