ENUM

EmoteState

The state of an emote.

link GraphQL Schema definition

1enum EmoteState {
2
3# Emote has been approved and is active.
4ACTIVE
5
6# Emote has been uploaded and is awaiting approval.
7PENDING
8
9# Emote is only available in the emote library.
10ARCHIVED
11
12# Emote has been uploaded into the emote library and is awaiting approval.
13PENDING_ARCHIVED
14
15# Emote is inactive.
16INACTIVE
17
18# Emote has an unknown state.
19UNKNOWN
20}

link Required by