| Name | Type | Description | Notes |
|---|---|---|---|
| enabled | bool | [optional] | |
| types | float | [optional] | |
| options | NotificationEmailSettingsOptions | [optional] |
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)