OBJECT
SubscriptionPurchaseDetails
The receipt details for a subscription purchase.
link GraphQL Schema definition
1 type SubscriptionPurchaseDetails { 2 3 # Date the purchase was cancelled at, if applicable, else null. 4 : Time 5 6 # Currency for the price, e.g. "USD". 7 : String! 8 9 # Divisor for the price based on the currency. e.g. Divisor for USD is 100. 10 : Int! 11 12 # Purchase's payment provider. 13 : PaymentProvider! 14 15 # Price in smallest subunit of currency, e.g. "499" cents. 16 : Int! 17 18 # The tier of the subscription purchase product. 19 : String 20 21 # The type of subscription purchase. 22 : SubscriptionProductType! 23 24 # Purchase state. 25 : SubscriptionPurchaseState! 26 27 }