ENUM

SubscriptionPurchaseState

The various states of the subscription purchase receipt.

link GraphQL Schema definition

1enum SubscriptionPurchaseState {
2
3# Active subscription purchase. It could be non-renewing or renewing.
4ACTIVE
5
6# Cancelled subscription purchase.
7CANCELLED
8
9# Inactive subscription purchase. User's subscription benefit from the original
10# purchase has ended
11# and has not renewed.
12INACTIVE
13}