Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.35 KB

File metadata and controls

34 lines (25 loc) · 1.35 KB

EmailServerResponse

Properties

Name Type Description Notes
alias str Human-readable name for your SMTP server [optional]
enabled bool If `true`, routes all email traffic through your SMTP server [optional]
host str Hostname or IP address of your SMTP server [optional]
port int Port number of your SMTP server [optional]
username str Username used to access your SMTP server [optional]
id str ID of your SMTP server [optional]

Example

from okta.models.email_server_response import EmailServerResponse

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

# convert the object into a dict
email_server_response_dict = email_server_response_instance.to_dict()
# create an instance of EmailServerResponse from a dict
email_server_response_from_dict = EmailServerResponse.from_dict(email_server_response_dict)

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