OBJECT

StuccoPack

A Stucco pack is a collection of stuccos, the pack can be activated to be used by viewers of that channel.

link GraphQL Schema definition

1type StuccoPack {
2
3# The ID of the stucco pack.
4id: ID!
5
6# User id of the owner of this pack (usually a channel).
7ownerID: ID!
8
9# The stuccos contained in this pack, represented as slots, containing the slot
10# index and the stucco.
11slots: [StuccoPackSlot!]
12
13}