OBJECT

PrimeOfferAsset

Media used for showing what is being offered.

link GraphQL Schema definition

1type PrimeOfferAsset {
2
3# Media type.
4type: String!
5
6# What is the media being used for.
7purpose: String
8
9# Media url used to show the content of an offer.
10location: String!
11
12# Media url for the 2x version of the asset, usually used for Hi Resolution.
13location2x: String
14
15}