GitHub

CartLineCost

import { CartLineCost } from '@daffodil/driver/shopify'

The cost of the merchandise line that the buyer will pay at checkout.

type CartLineCost = {
    __typename?: 'CartLineCost';
    amountPerQuantity: MoneyV2;
    compareAtAmountPerQuantity?: Maybe<MoneyV2>;
    subtotalAmount: MoneyV2;
    totalAmount: MoneyV2;
}