OBJECT

OfferPromotion

Promotion is a modifier to an Offer.

link GraphQL Schema definition

1type OfferPromotion {
2
3# End time of a promotion (empty if evergreen promotion).
4endAt: Time
5
6# Unique identifier for a Promotion.
7id: ID!
8
9# The OfferListing associated with this Promotion.
10listing: OfferListing! @deprecated( reason: "No longer used, currently left for backwards compatibility" )
11
12# Unique name for a Promotion.
13name: String!
14
15# Describes the priority of the Promotion (the higher the priorty, the more
16# important the promo).
17priority: Int!
18
19# Describe the Promotions metadata to display to the client.
20promoDisplay: PromotionDisplay!
21
22# Start time of a promotion.
23startAt: Time!
24
25}