OBJECT

DropReward

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

link GraphQL Schema definition

1type DropReward {
2
3# The URL where a user can link their account for this reward.
4accountLinkURL: String! @deprecated( reason: "use benefit.accountLinkURL" )
5
6# An availability enum for this reward.
7availability: DropRewardAvailability!
8
9# The DropBenefit that a user is claiming or get verified to.
10benefit: DropBenefit!
11
12# The display description of this award object.
13description: String! @deprecated( reason: "no longer used" )
14
15# The ID of this reward object.
16id: ID! @deprecated( reason: "use benefit.id" )
17
18# An image asset for this reward object.
19imageAssetURL: String! @deprecated( reason: "use benefit.imageAssetURL" )
20
21# Specifies if this reward is considered for a game that is available on iOS.
22isIosAvailable: Boolean! @deprecated( reason: "use benefit.isIosAvailable" )
23
24# The display name of this award object.
25name: String! @deprecated( reason: "use benefit.name" )
26
27# The ID of the owner of the item for this reward.
28ownerID: ID! @deprecated( reason: "use benefit.ownerOrganization.id" )
29
30# The display name of item owner for this drop.
31ownerName: String! @deprecated( reason: "use benefit.ownerOrganization.name" )
32
33}