Skip to content

GDnTZone

Bases: BaseModel

Representation of the GDT GD&T Value

PARAMETER DESCRIPTION
value

The value of the GD&T zone.

TYPE: Size

extend

The extend of the GD&T zone.

TYPE: GDnTExtend | None DEFAULT: None

combination

The combination of the GD&T zone.

TYPE: str | None DEFAULT: None

offset

The offset of the GD&T zone.

TYPE: str | None DEFAULT: None

constraint

The constraint of the GD&T zone.

TYPE: str | None DEFAULT: None

Source code in werk24/models/v2/models.py
class GDnTZone(BaseModel):
    """
    Representation of the GDT GD&T Value
    """

    value: Size = Field(
        ...,
        description="The value of the GD&T zone.",
    )
    extend: Optional[GDnTExtend] = Field(
        None,
        description="The extend of the GD&T zone.",
    )
    combination: Optional[str] = Field(
        None,
        description="The combination of the GD&T zone.",
    )
    offset: Optional[str] = Field(
        None,
        description="The offset of the GD&T zone.",
    )
    constraint: Optional[str] = Field(
        None,
        description="The constraint of the GD&T zone.",
    )