OBJECT

CheerSettings

CheerSettings are the channel-specific cheer settings.

link GraphQL Schema definition

1type CheerSettings {
2
3# cheerMinimumBits is the minimum number of bits per message (sum of all
4# cheermotes) required to cheer in this channel.
5cheerMinimumBits: Int!
6
7# emoteMinimumBits is the smallest number of bits that can be spent on an
8# individual cheermote in this channel.
9emoteMinimumBits: Int!
10
11# event is the name of a special cheering event this channel is currently
12# participating in.
13# If there is no current event this will return null.
14event: String
15
16id: ID!
17
18# Indicates if the bits football cheerbomb event is enabled on the channel.
19isCheerBombEventEnabled: Boolean!
20
21# Indicates if polls is enabled.
22isPollsEnabled: Boolean! @deprecated( reason: "Unsupported field. Check partner or affiliate status instead of using this field" )
23
24# isRecentEnabled indicates if recent cheers are pinned in this channel.
25# This can be used by a client to update `CheerInfo.recent` as new cheers are
26# received.
27isRecentEnabled: Boolean!
28
29# isTopEnabled indicates if top cheers are pinned in this channel.
30# This can be used by a client to update `CheerInfo.top` as new cheers are
31# received.
32isTopEnabled: Boolean!
33
34# leaderboard contains all of the Bits settings related to Bits Leaderboards for
35# this channel.
36leaderboard: BitsLeaderboardSettings @deprecated( reason: "Use leaderboard settings in user settings instead." )
37
38# recentMinimumBits is the number of bits required for a cheer to be pinned.
39recentMinimumBits: Int!
40
41# recentTimeoutMs is the amount of time a pinned recent message should be
42# displayed for.
43recentTimeoutMs: Int!
44
45}