Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.49 KB

File metadata and controls

38 lines (29 loc) · 1.49 KB

NotificationEmailSettingsOptions

Properties

Name Type Description Notes
email_from str [optional]
sender_name str [optional]
smtp_host str [optional]
smtp_port float [optional]
secure bool [optional]
ignore_tls bool [optional]
require_tls bool [optional]
auth_user str [optional]
auth_pass str [optional]
allow_self_signed bool [optional]

Example

from overseerr.models.notification_email_settings_options import NotificationEmailSettingsOptions

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

# convert the object into a dict
notification_email_settings_options_dict = notification_email_settings_options_instance.to_dict()
# create an instance of NotificationEmailSettingsOptions from a dict
notification_email_settings_options_from_dict = NotificationEmailSettingsOptions.from_dict(notification_email_settings_options_dict)

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