OBJECT

PromotionDisplay

Data used to display promotional discounts to the client.

link GraphQL Schema definition

1type PromotionDisplay {
2
3# Describes the discount percent to display to the client.
4discountPercent: Float
5
6# Describes the type of discount that will be applied to the client.
7discountType: PromoDiscountType!
8
9}