OBJECT

PendingSubscription

Data about a pending future subscription. ie. a user turns a 1-month gift into a recurring subscription.

link GraphQL Schema definition

1type PendingSubscription {
2
3# Whether the pending sub is cancelable.
4isCancelable: Boolean!
5
6# The id of the pending subscription purchase. Used to cancel the paid upgrade.
7originID: ID!
8
9# The formatted price of the pending subscription in USD.
10price: String! @deprecated( reason: "Transitioning to priceInfo instead" )
11
12# PriceInfo holds the pending subscription's pricing information such as currency,
13# cost, and tax information.
14priceInfo(taxCountry: String): PriceInfo!
15
16# The date the pending subscription begins.
17startsAt: Time!
18
19# Tier of pending subscription.
20tier: String!
21
22# The type of pending subscription. Ie GIFT_TO_PAID for a gift to paid conversion.
23type: PendingSubType!
24
25}