Skip to content

PrimaryProcessMilling

Bases: BaseModel

PARAMETER DESCRIPTION
primary_process

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

axis_count

The number of axes used in the milling process.

TYPE: int | None DEFAULT: None

Source code in werk24/models/v2/models.py
class PrimaryProcessMilling(BaseModel):
    primary_process: Literal[PrimaryProcessType.MILLING] = PrimaryProcessType.MILLING
    axis_count: Optional[int] = Field(
        None,
        description="The number of axes used in the milling process.",
    )