ENUM

OfferIneligibilityReasonCode

OfferIneligibilityReasonCode indicates why a user isn't eligible.

link GraphQL Schema definition

1enum OfferIneligibilityReasonCode {
2
3# Not eligible because the user has already purchased this offer.
4ALREADY_PURCHASED
5
6# Not eligible because something about the transaction could not be verified.
7COULD_NOT_VERIFY
8
9# Offer would exceed user's max token balance.
10MAX_TOKEN_BALANCE
11
12# No ineligibility reason was given.
13NONE
14
15# The reason for ineligibility could not be resolved.
16OTHER
17}