Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.43 KB

File metadata and controls

35 lines (26 loc) · 1.43 KB

EmailDomainResponseWithEmbedded

Properties

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

Example

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)

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