Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.76 KB

File metadata and controls

43 lines (34 loc) · 1.76 KB

UserSettingsNotifications

Properties

Name Type Description Notes
notification_types NotificationAgentTypes [optional]
email_enabled bool [optional]
pgp_key str [optional]
discord_enabled bool [optional]
discord_enabled_types float [optional]
discord_ids List[str] [optional]
pushbullet_access_token str [optional]
pushover_application_token str [optional]
pushover_user_key str [optional]
pushover_sound str [optional]
telegram_enabled bool [optional]
telegram_bot_username str [optional]
telegram_chat_id str [optional]
telegram_message_thread_id str [optional]
telegram_send_silently bool [optional]

Example

from seerr.models.user_settings_notifications import UserSettingsNotifications

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

# convert the object into a dict
user_settings_notifications_dict = user_settings_notifications_instance.to_dict()
# create an instance of UserSettingsNotifications from a dict
user_settings_notifications_from_dict = UserSettingsNotifications.from_dict(user_settings_notifications_dict)

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