OBJECT

Stucco

A stucco (wide emote) represents an image that can be used for user interaction in specific cases.

link GraphQL Schema definition

1type Stucco {
2
3# The description is used to describe the stucco (e.g. for screenreaders).
4description: String!
5
6# The unique ID of this stucco.
7id: ID!
8
9# The set of URLS to images related to this stucco, contains URLS for 1x, 2x and
10# 4x images.
11imageSet: StuccoImageSet!
12
13# Indicates if this stucco does not belong to a single channel (available to all
14# channels).
15isGlobal: Boolean!
16
17# The owner of this stucco, usually the channel this has been uploaded to.
18ownerID: ID!
19
20# The state of the stucco.
21state: StuccoState!
22
23# The textCode used to represent and identify this stucco, consists of channel
24# prefix + stucco prefix + code.
25textCode: String!
26
27}