ENUM

StuccoState

The state a stucco can be in.

link GraphQL Schema definition

1enum StuccoState {
2
3# - Active: part of a stucco pack.
4ACTIVE
5
6# - Inactive: available in the library.
7INACTIVE
8
9# - Moderated: stucco was moderated and is no longer available to the broadcaster
10# or viewers.
11MODERATED
12
13# - Pending: stucco is currently going through moderation.
14PENDING
15
16# - Archived: Archived stucco, no longer visible.
17ARCHIVED
18}