OBJECT

PrimeOfferWithEligibility

Represents a Prime Gaming content offer with the requesting user's eligibility information. These offers are displayed on the Crown menu on Twitch.tv.

link GraphQL Schema definition

1type PrimeOfferWithEligibility {
2
3# Unique Identifier for an offer used by the Catalog service.
4catalogOfferID: ID!
5
6# Instructions string in Markdown displayed after offer is claimed to use or
7# redeem.
8claimInstructions: String!
9
10# Content metadata for the given offer.
11content: PrimeOfferContent
12
13# The method of offer entitlement.
14deliveryMethod: OfferDeliveryMethod!
15
16# Description string in Markdown used in info block for Offer.
17description: String!
18
19# Unique Identifier for an offer.
20id: ID!
21
22# Offer image asset URL.
23imageURL: String!
24
25# Describes the user's eligibility for the requested offer.
26offerEligibility: PrimeOfferEligibility
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# Tags related to the offer such as Free Games with Prime (FGWP).
33tags: [String!]!
34
35# Primary Title for Offer.
36title: String!
37
38}