INPUT_OBJECT

UpdateCelebrationInput

Inputs for creating a new celebration.

link GraphQL Schema definition

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