CartDiscount
Contains information about discounts applied to the cart.
type CartDiscount = {
__typename?: 'CartDiscount'; /** The amount of the discount applied to the item. */
amount: Money; /** The description of the discount. */
label: Array<Maybe<Scalars['String']['output']>>;
};