OBJECT

DropEligibility

Contains all of the information about a Drop awarded to a user.

link GraphQL Schema definition

1type DropEligibility {
2
3# The remaining time in which this reward can be claimed.
4claimSecondsRemaining: Int!
5
6# Summary information for the drop the reward is claimed of.
7drop: DropObject! @deprecated( reason: "No longer supported. Use dropType instead." )
8
9# The unique ID of this drop instance.
10dropInstanceID: ID!
11
12# A single Drop. This could be either an event or time based drop.
13dropType: DropType!
14
15# Rewards available to the user for this drop and their statuses.
16rewards: [DropReward!]!
17
18# User eligibility for this drop instance.
19status: DropInstanceEligibilityStatus!
20
21}