OBJECT

PrimeOfferContent

An Object containing metadata for Digital Content.

link GraphQL Schema definition

1type PrimeOfferContent {
2
3# Content Categories for the game, displayed in info.
4categories: [String!]!
5
6# If the content has an external marketing page (Blizzard, Retail, etc), some
7# offers will have no external URL.
8externalURL: String
9
10# The Game metadata.
11game: Game
12
13# The publisher of the content.
14publisher: String!
15
16# Content SKU list for the offer.
17skus: [String!]!
18
19}