ENUM

CheermoteType

CheermoteType is the kind of cheermore (custom vs 1st- or 3rd-party global).

link GraphQL Schema definition

1enum CheermoteType {
2
3# The type for the generic "Cheer" action.
4DEFAULT
5
6# Custom Channel Cheermotes.
7CUSTOM
8
9# Sponsored Cheermotes.
10SPONSORED
11
12# Charity Cheermotes.
13CHARITY
14
15# First Party Cheermotes, like Kappa and BibleThump.
16FIRST_PARTY
17
18# Third Party Cheermotes, like Muxy and BitBoss.
19THIRD_PARTY
20
21# Cheermotes for display only. The cannot be cheered, but will be rendered in
22# Chat.
23DISPLAY_ONLY
24
25# The type for the anonymous cheer action.
26ANONYMOUS
27
28# Unknown cheermote type, we only return this if we get a bad cheermote,
29# we decided this is better than erroring the whole response, the front end should
30# treat this the same as DISPLAY_ONLY.
31UNKNOWN
32}