| Name |
Type |
Description |
Notes |
| display_name |
str |
|
|
| user_name |
str |
|
|
| brand_id |
str |
|
|
| domain |
str |
|
|
| validation_subdomain |
str |
Subdomain for the email sender's custom mail domain. Specify your subdomain when you configure a custom mail domain. |
[optional] [default to 'mail'] |
from okta.models.email_domain import EmailDomain
# TODO update the JSON string below
json = "{}"
# create an instance of EmailDomain from a JSON string
email_domain_instance = EmailDomain.from_json(json)
# print the JSON string representation of the object
print(EmailDomain.to_json())
# convert the object into a dict
email_domain_dict = email_domain_instance.to_dict()
# create an instance of EmailDomain from a dict
email_domain_from_dict = EmailDomain.from_dict(email_domain_dict)
[Back to Model list] [Back to API list] [Back to README]