INPUT_OBJECT

PublishSubscriptionEmoteInput

The data needed to finalize the creation of a Subscription Emote.

link GraphQL Schema definition

1input PublishSubscriptionEmoteInput {
4
2# The type of image asset for the emote.
3assetType: EmoteAssetType
8
5# The custom suffix of the emote code. When appended to the channel's emote prefix
6# this will form the full emote code.
7codeSuffix: String!
11
9# A list containing the image IDs for all assets needed for the emote.
10imageAssets: [EmoteImageAssetInput!]
15
12# DEPRECATED: Use imageAssets instead. The ID of the 28x28px emote ("1x") image
13# file previously uploaded to upload service.
14imageID1x: ID
19
16# DEPRECATED: Use imageAssets instead. The ID of the 56x56px emote ("2x") image
17# file previously uploaded to upload service.
18imageID2x: ID
23
20# DEPRECATED: Use imageAssets instead. The ID of the 112x112px emote ("4x") image
21# file previously uploaded to upload service.
22imageID4x: ID
27
24# The ProductID of the subscription product which this emote will be associated
25# with.
26productID: ID!
28}