OBJECT

TournamentReward

Type containing information about a Reward and claiming information.

link GraphQL Schema definition

1type TournamentReward {
2
3# The campaign ID associated with the reward.
4campaignID: ID! @deprecated( reason: "No longer supported" )
5
6# Can this reward be entitled to the user.
7canBeFulfilled: Boolean! @deprecated( reason: "No longer supported" )
8
9# Number representing quantity of the reward that user can claim (but not entitled
10# yet) at the time the request is made.
11canBeFulfilledQuantity: Int! @deprecated( reason: "No longer supported" )
12
13# The reward's description.
14description: String! @deprecated( reason: "No longer supported" )
15
16# Number representing quantity of the reward that user already claimed and can
17# find in his inventory. If the type is In Game Content, Twitch already handed off
18# to the game through the fulfiller.
19entitledQuantity: Int! @deprecated( reason: "No longer supported" )
20
21# The ID of the reward.
22id: ID! @deprecated( reason: "No longer supported" )
23
24# The reward's display image URL.
25imageURL: String! @deprecated( reason: "No longer supported" )
26
27# The state of the reward is entitled to the user.
28isEntitled: Boolean! @deprecated( reason: "No longer supported" )
29
30# Whether the reward is for prime users only.
31isPrimeOnly: Boolean! @deprecated( reason: "No longer supported" )
32
33# Whether the reward can be earned multiple times (e.g. in game consumables).
34isRepeatable: Boolean! @deprecated( reason: "No longer supported" )
35
36# Metadata attached to the reward.
37metadata: CampaignRewardMetadata @deprecated( reason: "No longer supported" )
38
39# The display name of the reward.
40name: String! @deprecated( reason: "No longer supported" )
41
42# Amount of reward (e.g. amount for bits).
43quantity: Int! @deprecated( reason: "No longer supported" )
44
45# A number presenting the rarity of this reward (the higher the rarer).
46rarity: Int! @deprecated( reason: "No longer supported" )
47
48# The type of reward (ex. Twitch Emote, In Game Content).
49type: String! @deprecated( reason: "No longer supported" )
50
51}

link Required by