OBJECT

DropBenefit

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

link GraphQL Schema definition

1type DropBenefit {
2
3# The redirect URL where a user can link their account.
4accountLinkURL: String!
5
6# The time the benefit was created.
7createdAt: Time!
8
9# The display description of this award object. //To be deprecated.
10description: String! @deprecated( reason: "No longer supported" )
11
12# The limit of how often this benefit can globally be awarded to a user. Set to -1
13# if the drop can be entitled unlimited amounts.
14# The per drop entitlementLimit of a reward is on DropObject.Drop2BenefitObject.
15entitlementLimit: Int!
16
17# The game that awarded the Drop.
18game: Game
19
20# The ID of this reward object.
21id: ID!
22
23# An image asset for this reward object.
24imageAssetURL: String!
25
26# Specifies if this benefit is considered for a game that is available on iOS.
27isIosAvailable: Boolean!
28
29# The display name of this award object.
30name: String!
31
32# The ID of the owner of the item for this reward.
33owner: User! @deprecated( reason: "Use DropBenefit.ownerOrganization instead" )
34
35# The (RBAC) Organization that owns the drop benefit.
36ownerOrganization: Organization
37
38}