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