OBJECT

BitsBadgeTier

Bits Badges with their associated settings.

link GraphQL Schema definition

1type BitsBadgeTier {
2
3# The badge for this tier.
4badge: Badge
5
6# Whether the broadcaster can upload emoticons for this tier.
7canUploadEmoticons: Boolean!
8
9# The emoticon configurations for emoticons that are currently in the process of
10# being uploaded for this tier.
11emoticonUploadConfigurations: [EmoteUploadConfiguration]!
12
13# The emoticons that are associated with this tier.
14emoticons: [Emote]!
15
16# Whether the badge is enabled for this threshold.
17isEnabled: Boolean!
18
19# Time when this badge tier was last updated.
20lastUpdated: Time
21
22# The amount of bits a user must cheer to achieve this tier.
23threshold: Int!
24
25# The number of users who have unlocked this badge tier.
26unlockedUsersCount: Int!
27
28}