OBJECT

UserDropReward

A list of Drops awarded to the user via Drops2.0.

link GraphQL Schema definition

1type UserDropReward {
2
3# The DropBenefit that a user is entitled to.
4benefit: DropBenefit!
5
6# The game that awarded the Drop.
7game: Game @deprecated( reason: "use benefit.Game" )
8
9# The assigned ID of the awarded reward.
10id: ID! @deprecated( reason: "use benefit.id" )
11
12# The image URL of the Benefit. Images are 80x80 pixels.
13imageURL: String! @deprecated( reason: "use benefit.imageAssetURL" )
14
15# Flag if the user is connected to the game in order to receive the Reward.
16isConnected: Boolean!
17
18# Specifies if this reward is considered for a game that is available on iOS.
19isIosAvailable: Boolean! @deprecated( reason: "use benefit.isIosAvailable" )
20
21# The timestamp when the Benefit was last awarded to the user.
22lastAwardedAt: Time!
23
24# The developer-provided name of the awarded Benefit.
25name: String! @deprecated( reason: "use benefit.name" )
26
27# Link where the user can connect their account necessary to receive the reward.
28requiredAccountLink: String! @deprecated( reason: "use benefit.accountLinkURL" )
29
30# The number of drop awards a user has received.
31totalCount: Int!
32
33}