Skip to content

PrimaryProcessCutting

Bases: BaseModel

Represents a cutting process in a technical drawing.

PARAMETER DESCRIPTION
primary_process

TYPE: Literal[PrimaryProcessType] DEFAULT: <PrimaryProcessType.CUTTING: 'CUTTING'>

requires_bending

Whether the cutting process requires bending.

TYPE: bool | None DEFAULT: None

Source code in werk24/models/v2/models.py
class PrimaryProcessCutting(BaseModel):
    """
    Represents a cutting process in a technical drawing.
    """

    primary_process: Literal[PrimaryProcessType.CUTTING] = PrimaryProcessType.CUTTING
    requires_bending: Optional[bool] = Field(
        None,
        description="Whether the cutting process requires bending.",
    )