Discount
Defines an individual discount. A discount can be applied to the cart as a whole or to an item, shipping.
type Discount = {
__typename?: 'Discount'; /** The amount of the discount. */
amount: Money; /** The type of the entity the discount is applied to. */
applied_to: CartDiscountType; /** The coupon related to the discount. */
coupon?: Maybe<AppliedCoupon>; /** A description of the discount. */
label: Scalars['String']['output'];
};