OBJECT

ClaimDropRewardsPayload

ClaimDropRewardsPayload returns the state of the claim.

link GraphQL Schema definition

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