OBJECT

UploadConfig

Individual upload config.

link GraphQL Schema definition

1type UploadConfig {
2
3# Upload id used when listening to pubsub.
4ID: ID!
5
6# URL to upload images to.
7URL: String!
8
9# The type of asset of the emote image that should be uploaded.
10assetType: EmoteAssetType!
11
12# Images that will result out of the upload.
13images: [UploadImage!]!
14
15# Size of the image that should be uploaded.
16size: EmoteImageSize!
17
18}