@usethrottle/cart
    Preparing search index...

    Interface TaxLine

    interface TaxLine {
        amount: number;
        currency: string;
        id: string;
        jurisdictionCode: string;
        jurisdictionName: string | null;
        lineItemId: string;
        rate: number;
        rateTypeCode?: string | null;
        taxName?: string | null;
        taxType:
            | "service"
            | "sales"
            | "vat"
            | "gst"
            | "pst"
            | "hst"
            | "excise"
            | "other";
        vatCode?: string
        | null;
    }
    Index
    amount: number
    currency: string
    id: string
    jurisdictionCode: string
    jurisdictionName: string | null
    lineItemId: string
    rate: number
    rateTypeCode?: string | null

    Engine rate classification: 'S' standard, 'R' reduced, 'Z' zero.

    taxName?: string | null

    The engine's own name for the tax ('Standard'); taxType is our slug for it.

    taxType:
        | "service"
        | "sales"
        | "vat"
        | "gst"
        | "pst"
        | "hst"
        | "excise"
        | "other"
    vatCode?: string | null

    The VAT code the engine returned, verbatim — AvaTax's vatCode.