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 1188 1189 1190 1191 1192 1193class 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.", )