OBJECT
PaidUpgrade
Data about a paid upgrade for a subscription. ie. a user upgrades a 1-month gift to a recurring subscription.
link GraphQL Schema definition
1 type PaidUpgrade { 2 3 # The id of the paid upgrade purchase. Used to cancel the paid upgrade. 4 : ID! 5 6 # The formatted price of the paid upgrade in USD. 7 : String! @deprecated( reason: "Transitioning to priceInfo instead" ) 8 9 # PriceInfo holds the paid upgrade's pricing information such as currency, cost, 10 # and tax information. 11 (: String): PriceInfo! 12 13 # The date the paid upgrade begins. 14 : Time! 15 16 # Tier of upgraded product. 17 : String! 18 19 }