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