Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

File metadata and controls

31 lines (22 loc) · 1.16 KB

NotificationEmailSettings

Properties

Name Type Description Notes
enabled bool [optional]
types float [optional]
options NotificationEmailSettingsOptions [optional]

Example

from overseerr.models.notification_email_settings import NotificationEmailSettings

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

# convert the object into a dict
notification_email_settings_dict = notification_email_settings_instance.to_dict()
# create an instance of NotificationEmailSettings from a dict
notification_email_settings_from_dict = NotificationEmailSettings.from_dict(notification_email_settings_dict)

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