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

1type PaidUpgrade {
2
3# The id of the paid upgrade purchase. Used to cancel the paid upgrade.
4originID: ID!
5
6# The formatted price of the paid upgrade in USD.
7price: 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.
11priceInfo(taxCountry: String): PriceInfo!
12
13# The date the paid upgrade begins.
14startsAt: Time!
15
16# Tier of upgraded product.
17tier: String!
18
19}