ENUM

PendingSubType

Denotes the type of pending subscription.

link GraphQL Schema definition

1enum PendingSubType {
2
3# This pending subscription was a conversion from a gift sub to a paid sub.
4GIFT_TO_PAID
5
6# This pending subscription was a conversion from a DNRd sub to a renewing sub.
7DNR_TO_RESUB_RECURRING
8
9# This pending subscription was a conversion from a DNRd sub to a one month sub.
10DNR_TO_RESUB_NONRECURRING
11
12# This pending subscription was a conversion from a prime sub to a paid sub.
13PRIME_TO_PAID
14}