ENUM

CelebrationArea

Area in which the celebration will show.

link GraphQL Schema definition

1enum CelebrationArea {
2
3# Celebration will show everywhere over the channel page.
4EVERYWHERE
5
6# Celebration will show only over the video.
7VIDEO_ONLY
8
9# Celebration will show over the video and panel.
10VIDEO_AND_PANEL
11
12# Unknown celebration area.
13UNKNOWN
14}