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
1 type PrimeOfferWithEligibility { 2 3 # Unique Identifier for an offer used by the Catalog service. 4 : ID! 5 6 # Instructions string in Markdown displayed after offer is claimed to use or 7 # redeem. 8 : String! 9 10 # Content metadata for the given offer. 11 : PrimeOfferContent 12 13 # The method of offer entitlement. 14 : OfferDeliveryMethod! 15 16 # Description string in Markdown used in info block for Offer. 17 : String! 18 19 # Unique Identifier for an offer. 20 : ID! 21 22 # Offer image asset URL. 23 : String! 24 25 # Describes the user's eligibility for the requested offer. 26 : PrimeOfferEligibility 27 28 # Ranking for which the offer should be displayed, ordered ASC -1 through 99 where 29 # -1 value indicates top priority. 30 : Int! 31 32 # Tags related to the offer such as Free Games with Prime (FGWP). 33 : [String!]! 34 35 # Primary Title for Offer. 36 : String! 37 38 }