@usethrottle/cart
    Preparing search index...

    Interface ShippingTaxQuoteItem

    interface ShippingTaxQuoteItem {
        discountAmount?: number;
        id: string;
        metadata?: Record<string, unknown>;
        productType?: string;
        quantity?: number;
        requiresShipping?: boolean;
        shippingProfileIds?: string[];
        subtotalAmount: number;
        taxCategory?: string;
        unitPrice?: number;
        weight?: number;
        weightUnit?: "lb" | "kg";
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    discountAmount?: number
    id: string
    metadata?: Record<string, unknown>
    productType?: string
    quantity?: number
    requiresShipping?: boolean
    shippingProfileIds?: string[]
    subtotalAmount: number
    taxCategory?: string
    unitPrice?: number
    weight?: number
    weightUnit?: "lb" | "kg"