INPUT_OBJECT

CreateCelebrationInput

Inputs for creating a new celebration.

link GraphQL Schema definition

1input CreateCelebrationInput {
4
2# Where on the channel page the celebration will show.
3area: CelebrationArea!
7
5# Channel id to create the celebration on.
6channelID: ID!
10
8# Length the celebration will play.
9durationMilliseconds: Int!
13
11# Effect which will show when the celebration triggers (ex Fireworks).
12effect: CelebrationEffect!
16
14# Threshold which will trigger the celebration (ex: Cheering 100 Bits).
15eventThreshold: Int!
19
17# Event type which will trigger the celebration (ex: Cheering Bits).
18eventType: CelebrationEventType!
24
20# Intensity of the celebration.
21# Should be bounded (TBA) value which will determine the spectacle of the
22# celebration.
23intensity: Int!
27
25# If true, the celebration is enabled.
26isEnabled: Boolean!
28}