GitHub

CartEstimatedCost

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

import { CartEstimatedCost } from '@daffodil/driver/shopify'
type CartEstimatedCost = {
    __typename?: 'CartEstimatedCost';
    checkoutChargeAmount: MoneyV2;
    subtotalAmount: MoneyV2;
    totalAmount: MoneyV2;
    totalDutyAmount?: Maybe<MoneyV2>;
    totalTaxAmount?: Maybe<MoneyV2>;
}
Type Options
CartEstimatedCost { __typename?: 'CartEstimatedCost'; checkoutChargeAmount: MoneyV2; subtotalAmount: MoneyV2; totalAmount: MoneyV2; totalDutyAmount?: Maybe<MoneyV2>; totalTaxAmount?: Maybe<MoneyV2>; }