@usethrottle/cart
    Preparing search index...

    Interface ExternalShippingTaxSnapshotInput

    interface ExternalShippingTaxSnapshotInput {
        applicationId: string;
        cartId?: string | null;
        checkoutSessionId?: string | null;
        currency?: string;
        orderId?: string | null;
        selectedShipping?: Record<string, unknown> | null;
        source?: string;
        taxLines?: TaxLine[];
        totals: {
            discountTotal: number;
            shippingTotal: number;
            subtotal: number;
            taxTotal: number;
            total: number;
        };
    }
    Index
    applicationId: string
    cartId?: string | null
    checkoutSessionId?: string | null
    currency?: string
    orderId?: string | null
    selectedShipping?: Record<string, unknown> | null
    source?: string
    taxLines?: TaxLine[]
    totals: {
        discountTotal: number;
        shippingTotal: number;
        subtotal: number;
        taxTotal: number;
        total: number;
    }