Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.2 KB

File metadata and controls

38 lines (29 loc) · 1.2 KB

SMTPConfig

Properties

Name Type Description Notes
host str [optional]
port int [optional]
username str [optional]
password str [optional]
var_from str [optional]
from_name str [optional]
use_ssl bool [optional]
max_html_size int [optional]
max_attachment_size int [optional]
max_total_attachments_size int [optional]

Example

from nativebpm_client.models.smtp_config import SMTPConfig

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

# convert the object into a dict
smtp_config_dict = smtp_config_instance.to_dict()
# create an instance of SMTPConfig from a dict
smtp_config_from_dict = SMTPConfig.from_dict(smtp_config_dict)

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