OBJECT

BitsBadgeTierNotification

A notification about achieving a new bits badge tier. Used to send a special message.

link GraphQL Schema definition

1type BitsBadgeTierNotification {
2
3# Whether or not the notification can be shared with chat.
4canShare: Boolean!
5
6# UUID for notification.
7id: ID!
8
9# Represents the badge tier threshold reached by the user on a channel (e.g. 100,
10# 1000, etc).
11threshold: Int!
12
13# The list of bits badge tier emoticons that were obtained as part of achieving
14# this notification's bits badge tier.
15unlockedEmoticons: [Emote]!
16
17}