Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.67 KB

File metadata and controls

37 lines (28 loc) · 1.67 KB

Brand

Properties

Name Type Description Notes
agree_to_custom_privacy_policy bool Consent for updating the custom privacy URL. Not required when resetting the URL. [optional]
custom_privacy_policy_url str Custom privacy policy URL [optional]
default_app DefaultApp [optional]
email_domain_id str The ID of the email domain [optional]
id str The Brand ID [optional] [readonly]
is_default bool If `true`, the Brand is used for the Okta subdomain [optional] [readonly]
locale str The language specified as an IETF BCP 47 language tag [optional]
name str The name of the Brand [optional]
remove_powered_by_okta bool Removes "Powered by Okta" from the sign-in page in redirect authentication deployments, and "© [current year] Okta, Inc." from the Okta End-User Dashboard [optional] [default to False]

Example

from okta.models.brand import Brand

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

# convert the object into a dict
brand_dict = brand_instance.to_dict()
# create an instance of Brand from a dict
brand_from_dict = Brand.from_dict(brand_dict)

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