OBJECT
SubscriptionGiftPromotion
The promotion offer on a subscription gift offer.
link GraphQL Schema definition
1 type SubscriptionGiftPromotion { 2 3 # The subscription gift's discount type for this promotion(e.g. "PERCENT_OFF"). 4 : SubscriptionPromotionDiscountType! 5 6 # The discount value of the subscription gift product (e.g. "50"). 7 : String! 8 9 # Unique identifier of a subscription gift promotion. 10 : ID! 11 12 # The subscription gift offer price info which contains information about 13 # currency, cost and tax information. 14 (: String): PriceInfo! 15 16 # The quantity of gifts this promotion is for(ex: 11 gifts for a promotion on 10 17 # gifts). 18 : Int! 19 20 # Promotion consumable SKU used by third party that the user will purchase. 21 : String 22 23 }