| Name | Type | Description | Notes |
|---|---|---|---|
| embedded | object | [optional] [readonly] | |
| dns_validation_records | List[EmailDomainDNSRecord] | [optional] | |
| domain | str | [optional] | |
| id | str | [optional] | |
| validation_status | EmailDomainStatus | [optional] | |
| display_name | str | ||
| user_name | str |
from okta.models.email_domain_response_with_embedded import EmailDomainResponseWithEmbedded
# TODO update the JSON string below
json = "{}"
# create an instance of EmailDomainResponseWithEmbedded from a JSON string
email_domain_response_with_embedded_instance = EmailDomainResponseWithEmbedded.from_json(json)
# print the JSON string representation of the object
print(EmailDomainResponseWithEmbedded.to_json())
# convert the object into a dict
email_domain_response_with_embedded_dict = email_domain_response_with_embedded_instance.to_dict()
# create an instance of EmailDomainResponseWithEmbedded from a dict
email_domain_response_with_embedded_from_dict = EmailDomainResponseWithEmbedded.from_dict(email_domain_response_with_embedded_dict)