OBJECT
SubscriptionGiftOffer
A gift offer that is available on a particular subscription based on gift type and platform.
link GraphQL Schema definition
1 type SubscriptionGiftOffer { 2 3 # Unique identifier of a subscription gift offer. 4 : ID! 5 6 # The subscription gift offer price info which contains information about 7 # currency, cost and tax information. 8 (: String): PriceInfo! 9 10 # The available promotions on this gift offer. 11 : SubscriptionGiftPromotion 12 13 # The amount of gifts in this offer. 14 : 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. 21 : String 22 23 # The type of gift this offer is for. 24 : SubscriptionGiftType! 25 26 }