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