Type Alias BomItem

BomItem: {
    instances: BomOccurrence[];
    kind: AssemblyNodeKind;
    physical: PhysicalProps;
    productId: string;
    productName: string;
    quantity: number;
}

Aggregated BOM item for a product.

Type declaration

  • instances: BomOccurrence[]

    Occurrence instances for this product.

  • kind: AssemblyNodeKind

    Product kind (assembly or part).

  • physical: PhysicalProps

    Physical properties for this product.

  • productId: string

    Product id.

  • productName: string

    Product display name.

  • quantity: number

    Quantity of occurrences.