Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

EmailTestAddresses

Properties

Name Type Description Notes
var_from str An email address to send the test email from
to str An email address to send the test email to

Example

from okta.models.email_test_addresses import EmailTestAddresses

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

# convert the object into a dict
email_test_addresses_dict = email_test_addresses_instance.to_dict()
# create an instance of EmailTestAddresses from a dict
email_test_addresses_from_dict = EmailTestAddresses.from_dict(email_test_addresses_dict)

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