OBJECT

UserSettings

Groups site-wide user settings together.

link GraphQL Schema definition

1type UserSettings {
2
3# Whether the user is whitelisted to host Prime Video watch parties. This
4# takes precedence over user.watchPartiesRestrictions.
5canHostWatchParties: Boolean!
6
7# The user's channel feed on/off switch.
8# The channel feed is displayed if set to true and is
9# hidden if set to false.
10channelFeedEnabled: Boolean! @deprecated( reason: "No longer supported" )
11
12# The cheer settings for a user, configured in their partner dashboard.
13cheer: CheerPartnerSettings
14
15# Whether or not the user has a second authentication method configured.
16hasTwoFactorEnabled: Boolean
17
18# Whether or not the broadcaster is eligible for payout through Amazon retail
19# revenue share.
20isAmazonRetailRevShareEnabled: Boolean @deprecated( reason: "Game sales discontinued" )
21
22# Whether or not the broadcaster is eligible for payout through twitch game
23# commerce revenue share.
24isCommerceRevShareEnabled: Boolean @deprecated( reason: "Game sales discontinued" )
25
26# Whether or not the user has requested that their registration date be hidden in
27# the viewer card.
28isCreateDateHidden: Boolean
29
30# Whether or not the user has elected to be hidden from search results.
31isDirectoryHidden: Boolean
32
33# Whether or not the email was successfully reverted.
34isEmailRevertSuccess: Boolean
35
36# Whether the user's channel has rituals enabled.
37isRitualsEnabled: Boolean!
38
39# Whether the user's channel is whitelisted into the rituals experiment.
40isRitualsWhitelisted: Boolean! @deprecated( reason: "Rituals is whitelisted only for launch." )
41
42# The user's activity sharing setting.
43# Activity is the part of a user's status that shows what they're currently
44# playing, watching, or streaming.
45# Requires the `user_presence_friends_read` scope.
46isSharingActivity: Boolean!
47
48# Partner settings related to leaderboards.
49leaderboard: LeaderboardSettings
50
51# The user's preferred language tag for displaying text content.
52preferredLanguageTag: LanguageTag
53
54# The user's shared availability while online.
55# A value of ONLINE (typically called "invisibility") additionally means that the
56# user's activity will not be shared
57# regardless of the isSharingActivity setting.
58# Requires the `user_presence_friends_read` scope.
59visibility: Visibility!
60
61}