OBJECT

DashboardAlertQueuePreferences

Preferences of a user controlling the types of dashboard alerts to be published.

link GraphQL Schema definition

1type DashboardAlertQueuePreferences {
2
3# If true, cannot publish alerts to the user.
4isDNDModeEnabled: Boolean!
5
6# When the preferences were last modified.
7lastModified: Time
8
9# If true, cannot publish bits alerts to the user.
10shouldHideBits: Boolean!
11
12# If true, cannot publish follows alerts to the user.
13shouldHideFollows: Boolean!
14
15# If true, cannot publish subscription gift alerts to the user.
16shouldHideGiftSubscriptions: Boolean!
17
18# If true, cannot publish hosts alerts to the user.
19shouldHideHosts: Boolean!
20
21# If true, cannot publish raids alerts to the user.
22shouldHideRaids: Boolean!
23
24# If true, cannot publish regular subscriptions alerts to the user (gift subs are
25# still shown).
26shouldHideSubscriptions: Boolean!
27
28}