ENUM

OfferPurchaseType

OfferPUrchaseType provides extra contextual details for the type of purchase.

link GraphQL Schema definition

1enum OfferPurchaseType {
2
3# This offer is a default, standard purchase.
4DEFAULT_PURCHASE
5
6# This offer being purchased will be a tier upgrade from their current active
7# tier.
8UPGRADE_RECURRING_SUB_TIER
9
10# This offer being purchased will be a tier downgrade from their current active
11# tier.
12DOWNGRADE_RECURRING_SUB_TIER
13
14# This offer being purchased is future-dated.
15FUTURE_PURCHASE
16}