Skip to content

PrimaryProcessTurning

Bases: BaseModel

PARAMETER DESCRIPTION
primary_process

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

requires_secondary_milling

Whether the turning process requires secondary milling.

TYPE: bool

Source code in werk24/models/v2/models.py
class PrimaryProcessTurning(BaseModel):
    primary_process: Literal[PrimaryProcessType.TURNING] = PrimaryProcessType.TURNING
    requires_secondary_milling: bool = Field(
        ...,
        description="Whether the turning process requires secondary milling.",
    )