INPUT_OBJECT

CreateArchivedEmoteInput

The data needed to finalize the creation of a non-active (aka archived) Emote.

link GraphQL Schema definition

1input CreateArchivedEmoteInput {
4
2# The type of image asset for the emote.
3assetType: EmoteAssetType
8
5# The channel's emote prefix and the codeSuffix of the emote put together. This is
6# how the emote is invoked in chat.
7code: String!
12
9# The custom suffix of the emote code. When appended to the channel's emote prefix
10# this will form the full emote code.
11codeSuffix: String!
15
13# A list containing the image IDs for all assets needed for the emote.
14imageAssets: [EmoteImageAssetInput!]!
16}