OBJECT

PrimeOffer

A digital entitlement that is displayed to a user.

link GraphQL Schema definition

1type PrimeOffer {
2
3# Unique identifer for the offer.
4id: ID!
5
6# Unique identifier for the retail equivalent of the offer
7asin: String
8
9# Unique identifier for the catalog equivalent of the offer
10catalogId: String
11
12# Metadata for the content being offered.
13content: PrimeOfferContent
14
15# Offer entitlement method.
16deliveryMethod: String
17
18# Information about what is being offered.
19# Supplied in Markdown.
20description: String
21
22# Images, videos, gifs, used to display the offer content.
23assets: [PrimeOfferAsset!]
24
25# Images, videos, gifs, grouped by purposed and used to display the offer content.
26offerAssets: PrimeOfferAssets
27
28# Ranking for which the offer should be displayed ordered asc.
29# An item with 0 priority would be shown before an item with 100 priority.
30priority: Int!
31
32# Connection for the current user.
33self: OfferSelfConnection
34
35# Metadata related to the categorization of the offer (e.g. Free Games with
36# Prime).
37tags: [PrimeOfferTag!]
38
39# Primary title for the offer.
40title: String
41
42# Time at which the offer is available.
43startTime: Time
44
45# Time at which the offer stops being available.
46endTime: Time
47
48# The list of products being offered.
49productList: [PrimeOfferProduct!]
50
51# Journey associated with a prime offer
52# Some PrimeOffers are linked to external Journey detail pages where the customer
53# can claim content
54linkedJourney: Journey
55
56# Game containing relevant data
57game: Game
58
59# Indicator to determine if the offer is a retail offer.
60isRetailLinkOffer: Boolean
61
62# The id of the related base game metadata
63relatedGameId: String
64
65# The title of the related base game metadata
66relatedGameTitle: String
67
68}

link Required by