Skip to content

GDnTReference

Bases: BaseModel

Represents a reference for a GD&T characteristic.

PARAMETER DESCRIPTION
association

Reference for associating elements in tolerance evaluation.

TYPE: GDnTReferenceAssociation | None DEFAULT: None

parameter

Parameter of the reference element (e.g., peak value, deviation span).

TYPE: GDnTReferenceParameter | None DEFAULT: None

Source code in werk24/models/v2/models.py
class GDnTReference(BaseModel):
    """
    Represents a reference for a GD&T characteristic.
    """

    association: Optional[GDnTReferenceAssociation] = Field(
        None, description="Reference for associating elements in tolerance evaluation."
    )
    parameter: Optional[GDnTReferenceParameter] = Field(
        None,
        description="Parameter of the reference element (e.g., peak value, deviation span).",
    )