ENUM

DropInstanceEligibilityStatus

Status enums for a drop instance.

link GraphQL Schema definition

1enum DropInstanceEligibilityStatus {
2
3# User can claim all rewards.
4ELIGIBLE_FOR_ALL
5
6# User can claim some rewards.
7LIMITED
8
9# User can not claim any of the rewards in this drop instance.
10ENTITLEMENT_LIMIT_REACHED
11
12# User has already claimed this drop instance.
13DROP_INSTANCE_ALREADY_CLAIMED
14
15# The claim duration has expired and user can no longer claim this drop instance.
16EXPIRED
17
18# Unknown is returned if a status is returned from the backend that was not
19# expected.
20UNKNOWN
21}