INPUT_OBJECT

CreateStuccoInput

Inputs to creating a stucco.

link GraphQL Schema definition

1input CreateStuccoInput {
4
2# ID of the channel this stucco belongs to.
3channelID: ID!
8
5# Description representing the stucco, should be the words contained in the
6# stucco, used by screen readers.
7description: String!
11
9# Base64 encoded binary data of the 92x28px stucco ("1x") image asset.
10imageData1x: String!
14
12# Base64 encoded binary data of the 182x56px stucco ("2x") image asset.
13imageData2x: String!
17
15# Base64 encoded binary data of the 368x112px stucco ("4x") image asset.
16imageData4x: String!
21
18# Text code representing the stucco without any prefixes (prefixes are added in
19# the backend).
20suffix: String!
22}