INPUT_OBJECT

UpdateStuccoInput

Inputs to updating a stucco.

link GraphQL Schema definition

1input UpdateStuccoInput {
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!
20
18# Unique ID of the stucco to update.
19stuccoID: ID!
24
21# Text code representing the stucco without any prefixes (prefixes are added in
22# the backend).
23suffix: String!
25}