GitHub

CartLineCost

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

import { CartLineCost } from '@daffodil/driver/shopify'
type CartLineCost = {
    __typename?: 'CartLineCost';
    amountPerQuantity: MoneyV2;
    compareAtAmountPerQuantity?: Maybe<MoneyV2>;
    subtotalAmount: MoneyV2;
    totalAmount: MoneyV2;
}
Type Options
CartLineCost { __typename?: 'CartLineCost'; amountPerQuantity: MoneyV2; compareAtAmountPerQuantity?: Maybe<MoneyV2>; subtotalAmount: MoneyV2; totalAmount: MoneyV2; }