ENUM

PurchaseOrderFailureReason

The enumerated failure reasons for a purchase order failure.

link GraphQL Schema definition

1enum PurchaseOrderFailureReason {
2
3# Bank declined the charge.
4BANK_DECLINED
5
6# Failed to entitle the benefit. User was refunded if a charge occurred.
7ENTITLEMENT_FAILED
8
9# User is ineligible to purchase.
10INELIGIBLE
11
12# User's payment method is invalid.
13INVALID_PAYMENT_METHOD
14
15# System error.
16SYSTEM_ERROR
17
18# Unknown failure reason.
19UNKNOWN
20}