ENUM

AssignEmoteToSubscriptionProductErrorCode

Possible error codes for AssignEmoteToSubscriptionProductError.

link GraphQL Schema definition

1enum AssignEmoteToSubscriptionProductErrorCode {
2
3# The specified emote does not exist.
4EMOTE_NOT_FOUND
5
6# The user is not allowed to assign this emote.
7PERMISSION_DENIED
8
9# The product has no available empty emote slots.
10EMOTE_LIMIT_REACHED
11
12# The emote is not in a valid state to be assigned.
13INVALID_EMOTE_STATE
14
15# An active or pending emote is already using this emote's code.
16EMOTE_CODE_ALREADY_EXISTS
17
18# Unknown error.
19UNKNOWN
20}