ENUM

PurchaseOfferErrorCode

The enumerated error reasons when purchasing an offer.

link GraphQL Schema definition

1enum PurchaseOfferErrorCode {
2
3# User is ineligible to purchase.
4INELIGIBLE
5
6# An unexpected internal server error occurred.
7INTERNAL_SERVER_ERROR
8
9# User's payment method is invalid.
10INVALID_PAYMENT_METHOD
11
12# Must have auth credentials to purchase an offer.
13UNAUTHENTICATED
14}