CartCost
The costs that the buyer will pay at checkout.
The cart cost uses CartBuyerIdentity
to determine
international pricing.
import { CartCost } from '@daffodil/driver/shopify'
type CartCost = {
__typename?: 'CartCost';
checkoutChargeAmount: MoneyV2;
subtotalAmount: MoneyV2;
subtotalAmountEstimated: Scalars['Boolean']['output'];
totalAmount: MoneyV2;
totalAmountEstimated: Scalars['Boolean']['output'];
totalDutyAmount?: Maybe<MoneyV2>;
totalDutyAmountEstimated: Scalars['Boolean']['output'];
totalTaxAmount?: Maybe<MoneyV2>;
totalTaxAmountEstimated: Scalars['Boolean']['output'];
}
Type | Options |
---|---|
CartCost | {
__typename?: 'CartCost';
checkoutChargeAmount: MoneyV2;
subtotalAmount: MoneyV2;
subtotalAmountEstimated: Scalars['Boolean']['output'];
totalAmount: MoneyV2;
totalAmountEstimated: Scalars['Boolean']['output'];
totalDutyAmount?: Maybe<MoneyV2>;
totalDutyAmountEstimated: Scalars['Boolean']['output'];
totalTaxAmount?: Maybe<MoneyV2>;
totalTaxAmountEstimated: Scalars['Boolean']['output'];
} |