OBJECT

CheermoteImage

CheermoteImage is a single image variation of a CheermoteTier.

link GraphQL Schema definition

1type CheermoteImage {
2
3# dpiScale is the scale of the cheermote image.
4# Currently available scales are: 1, 1.5, 2, 3, or 4.
5dpiScale: Float! @deprecated( reason: "Scheduled to be removed." )
6
7# The ID of CheermoteImage.
8id: ID! @deprecated( reason: "Scheduled to be removed." )
9
10# isAnimated is true for animated cheermotes and false otherwise.
11isAnimated: Boolean! @deprecated( reason: "Scheduled to be removed." )
12
13# theme is the UI theme the cheermote is designed to be rendered on.
14theme: ChatTheme! @deprecated( reason: "Scheduled to be removed." )
15
16# url is the URL of the image asset.
17url: String! @deprecated( reason: "Scheduled to be removed." )
18
19}