CartPrices
Contains details about the final price of items in the cart, including discount and tax information.
type CartPrices = {
__typename?: 'CartPrices'; /** An array containing the names and amounts of taxes applied to each item in the cart. */
applied_taxes?: Maybe<Array<Maybe<CartTaxItem>>>; /** @deprecated Use discounts instead. */
discount?: Maybe<CartDiscount>; /** An array containing cart rule discounts, store credit and gift cards applied to the cart. */
discounts?: Maybe<Array<Maybe<Discount>>>; /** The total, including discounts, taxes, shipping, and other fees. */
grand_total?: Maybe<Money>; /** The total of the cart, including discounts, shipping, and other fees without tax. */
grand_total_excluding_tax?: Maybe<Money>; /** The subtotal without any applied taxes. */
subtotal_excluding_tax?: Maybe<Money>; /** The subtotal including any applied taxes. */
subtotal_including_tax?: Maybe<Money>; /** The subtotal with any discounts applied, but not taxes. */
subtotal_with_discount_excluding_tax?: Maybe<Money>;
};