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