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