OBJECT

PrimeOffer

Prime Digital Content Offers are displayed to users on Twitch via Offers in the top nav.

link GraphQL Schema definition

1type PrimeOffer {
2
3# Unique Identifier for an offer used by the Catalog service.
4catalogOfferID: ID!
5
6# Hint describing the current availability state of the claim for the user.
7claimHint: ClaimHint!
8
9# Instructions string in Markdown displayed after offer is claimed to use or
10# redeem.
11claimInstructions: String!
12
13# Content metadata for the given offer.
14content: PrimeOfferContent
15
16# The method of offer entitlement.
17deliveryMethod: OfferDeliveryMethod!
18
19# Description string in Markdown used in info block for Offer.
20description: String!
21
22# Unique Identifier for an offer.
23id: ID!
24
25# Offer image asset URL.
26imageURL: String!
27
28# Ranking for which the offer should be displayed, ordered ASC -1 through 99 where
29# -1 value indicates top priority.
30priority: Int!
31
32# The connection for whether the user is entitled to the offer.
33self: PrimeOfferSelfConnection
34
35# Tags related to the offer such as Free Games with Prime (FGWP).
36tags: [String!]!
37
38# Primary Title for Offer.
39title: String!
40
41}