OBJECT

SubscriptionGiftOffer

A gift offer that is available on a particular subscription based on gift type and platform.

link GraphQL Schema definition

1type SubscriptionGiftOffer {
2
3# Unique identifier of a subscription gift offer.
4id: ID!
5
6# The subscription gift offer price info which contains information about
7# currency, cost and tax information.
8priceInfo(taxCountry: String): PriceInfo!
9
10# The available promotions on this gift offer.
11promotion: SubscriptionGiftPromotion
12
13# The amount of gifts in this offer.
14quantity: Int!
15
16# thirdPartySKU represents the purchasable third party SKU of the gift the user
17# will purchase.
18# Will return an nil if the user has no purchasable skus.
19# Will return nil if not on a platform with an external subscription gift offer or
20# if the country is not supported.
21thirdPartySKU: String
22
23# The type of gift this offer is for.
24type: SubscriptionGiftType!
25
26}