ENUM

EmoteType

link GraphQL Schema definition

1enum EmoteType {
2
3# Emote is a channel points reward.
4CHANNEL_POINTS
5
6# Emote is a bits badge tier reward.
7BITS_BADGE_TIERS
8
9# Emote is a subscription product benefit.
10SUBSCRIPTIONS
11
12# Emote is a Twitch Prime benefit.
13PRIME
14
15# Emote is a Twitch Turbo benefit.
16TURBO
17
18# Two Factor authorization enabled reward emotes.
19TWO_FACTOR
20
21# Emote is one of the robot, monkey, or glitch smilies sets.
22SMILIES
23
24# Emote is a global emote.
25GLOBALS
26
27# Limited time emotes are from a limited window event like FUEL or Esports (like
28# OWL or Heathstone).
29LIMITED_TIME
30
31# Limited time emote from a hype train campaign.
32HYPE_TRAIN
33
34# Limited time emote from a megacommmerce/megacheer campaign.
35MEGA_COMMERCE
36
37# Emotes which have intentionally been given no associated feature because they
38# are only available in the Emotes Library.
39ARCHIVE
40
41# Emote has an unknown type.
42UNKNOWN
43}

link Required by