OBJECT
CheerSettings
CheerSettings are the channel-specific cheer settings.
link GraphQL Schema definition
1 type CheerSettings { 2 3 # cheerMinimumBits is the minimum number of bits per message (sum of all 4 # cheermotes) required to cheer in this channel. 5 : Int! 6 7 # emoteMinimumBits is the smallest number of bits that can be spent on an 8 # individual cheermote in this channel. 9 : 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. 14 : String 15 16 : ID! 17 18 # Indicates if the bits football cheerbomb event is enabled on the channel. 19 : Boolean! 20 21 # Indicates if polls is enabled. 22 : 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. 27 : 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. 32 : Boolean! 33 34 # leaderboard contains all of the Bits settings related to Bits Leaderboards for 35 # this channel. 36 : 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. 39 : Int! 40 41 # recentTimeoutMs is the amount of time a pinned recent message should be 42 # displayed for. 43 : Int! 44 45 }