GitHub

CartEstimatedCost

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

The estimated costs that the buyer will pay at checkout. The estimated cost uses CartBuyerIdentity to determine international pricing.

type CartEstimatedCost = {
    __typename?: 'CartEstimatedCost';
    checkoutChargeAmount: MoneyV2;
    subtotalAmount: MoneyV2;
    totalAmount: MoneyV2;
    totalDutyAmount?: Maybe<MoneyV2>;
    totalTaxAmount?: Maybe<MoneyV2>;
}