OBJECT
ClaimDropRewardsPayload
ClaimDropRewardsPayload returns the state of the claim.
link GraphQL Schema definition
1 type ClaimDropRewardsPayload { 2 3 # Summary information for the drop the reward is claimed of. 4 : DropObject @deprecated( reason: "No longer supported. Use dropType instead." ) 5 6 # dropInstanceID is the same as the provided input. 7 : ID 8 9 # A single Drop. This could be either an event or time based drop. 10 : DropType 11 12 # UserAccountConnected is a boolean specifying if the user has a connected account 13 # link to the game the Reward is for. 14 : Boolean 15 16 # rewards lists the rewards that were claimed and their statuses. 17 : [DropReward!]! 18 19 # status is an enum specifying the status of the claim request. 20 : DropInstanceEligibilityStatus 21 22 }