| Name |
Type |
Description |
Notes |
| display_name |
str |
|
|
| user_name |
str |
|
|
from okta.models.update_email_domain import UpdateEmailDomain
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateEmailDomain from a JSON string
update_email_domain_instance = UpdateEmailDomain.from_json(json)
# print the JSON string representation of the object
print(UpdateEmailDomain.to_json())
# convert the object into a dict
update_email_domain_dict = update_email_domain_instance.to_dict()
# create an instance of UpdateEmailDomain from a dict
update_email_domain_from_dict = UpdateEmailDomain.from_dict(update_email_domain_dict)
[Back to Model list] [Back to API list] [Back to README]