OBJECT

UserSubscriptionSettings

UserSubscriptionSettings displays the users subscription settings.

link GraphQL Schema definition

1type UserSubscriptionSettings {
2
3# If the user only wants to receive gifts to channels they follow.
4giftsToFollowedChannelsOnly: Boolean!
5
6# If the user wants to hide Badge Modifier.
7isBadgeModifierHidden: Boolean!
8
9# If the user wants to hide their Founder Badges.
10isFounderBadgesHidden: Boolean!
11
12# If the user wants to hide the number of gifts they've gifted.
13isGiftCountHidden: Boolean!
14
15# If the user wants to hide their subscription tenure and status in the chat
16# viewer card.
17isSubscriptionStatusHidden: Boolean!
18
19}