GitHub

CartLineEstimatedCost

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

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