OBJECT

CelebrationProduct

A celebration product that a user may purchase.

link GraphQL Schema definition

1type CelebrationProduct implements ProductCatalogItem {
2
3# A list of benefits the user will receive when purchasing the celebration
4# product.
5benefits: [ProductCatalogBenefit!]
6
7# A description of the product.
8description: String
9
10# The identifier of the celebration product.
11id: ID!
12
13# The intensity of the celebration product.
14intensity: CelebrationIntensity!
15
16# Indicates if the celebration product is enabled for purchase in the channel.
17isEnabled: Boolean!
18
19# A list of offers available for purchasing this celbration product.
20offers: [Offer!]
21
22# The owner (ex: channel) of the celebration product.
23owner: ID!
24
25# A list of potential offers that a broadcaster could set for purchasing this
26# celebration product.
27potentialOffers: [Offer!]
28
29# The title of the product.
30title: String!
31
32}