ENUM

BadgeTierEmotesFilter

A filter for controlling which Bits Badge Tier Emotes to return.

link GraphQL Schema definition

1enum BadgeTierEmotesFilter {
2
3# Returns all bits badge tier emotes for this channel.
4ALL
5
6# Returns all locked bits badge tier emotes for this user in this channel.
7LOCKED
8
9# Returns a few of the locked bits badge tier emotes for this user in this
10# channel.
11# Which emotes and the exact number are determined by the back-end.
12LOCKED_PREVIEW
13
14# Returns all unlocked bits badge tier emotes for this user in this channel.
15UNLOCKED
16
17# Returns highest currently unlocked bits badge tier emote and next to be unlocked
18# by user.
19HIGHEST_UNLOCKED_AND_NEXT
20}