OBJECT

SubscriptionGiftPromotion

The promotion offer on a subscription gift offer.

link GraphQL Schema definition

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