interface AsukaAssemblyBomLine {
    category?: string;
    componentIds: string[];
    key: string;
    label: string;
    metadata?: Record<string, unknown>;
    quantity: number;
    sku?: string;
    total: number;
    unit: string;
    unitPrice: number;
}

Properties

category?: string
componentIds: string[]
key: string
label: string
metadata?: Record<string, unknown>
quantity: number
sku?: string
total: number
unit: string
unitPrice: number