Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.25 KB

File metadata and controls

35 lines (26 loc) · 1.25 KB

BrandRequest

Properties

Name Type Description Notes
agree_to_custom_privacy_policy bool [optional]
custom_privacy_policy_url str [optional]
default_app DefaultApp [optional]
email_domain_id str [optional]
locale str The language specified as an IETF BCP 47 language tag [optional]
name str [optional]
remove_powered_by_okta bool [optional]

Example

from okta.models.brand_request import BrandRequest

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

# convert the object into a dict
brand_request_dict = brand_request_instance.to_dict()
# create an instance of BrandRequest from a dict
brand_request_from_dict = BrandRequest.from_dict(brand_request_dict)

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