Skip to content

BillOfMaterial

Bases: Reference

Represents a bill of material (BOM) table in a technical drawing.

PARAMETER DESCRIPTION
reference_id

Reference ID to identify the object.

TYPE: int

rows

List of rows in the bill of material.

TYPE: List[BillOfMaterialRow]

Source code in werk24/models/v2/models.py
class BillOfMaterial(Reference):
    """
    Represents a bill of material (BOM) table in a technical drawing.
    """

    rows: List[BillOfMaterialRow] = Field(
        ...,
        description="List of rows in the bill of material.",
    )