OBJECT
PrimeOffer
Prime Digital Content Offers are displayed to users on Twitch via Offers in the top nav.
link GraphQL Schema definition
1 type PrimeOffer { 2 3 # Unique Identifier for an offer used by the Catalog service. 4 : ID! 5 6 # Hint describing the current availability state of the claim for the user. 7 : ClaimHint! 8 9 # Instructions string in Markdown displayed after offer is claimed to use or 10 # redeem. 11 : String! 12 13 # Content metadata for the given offer. 14 : PrimeOfferContent 15 16 # The method of offer entitlement. 17 : OfferDeliveryMethod! 18 19 # Description string in Markdown used in info block for Offer. 20 : String! 21 22 # Unique Identifier for an offer. 23 : ID! 24 25 # Offer image asset URL. 26 : String! 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 # The connection for whether the user is entitled to the offer. 33 : PrimeOfferSelfConnection 34 35 # Tags related to the offer such as Free Games with Prime (FGWP). 36 : [String!]! 37 38 # Primary Title for Offer. 39 : String! 40 41 }