Skip to content

ReferencePosition

Bases: BaseModel

Represents the position of a reference in the drawing.

PARAMETER DESCRIPTION
reference_id

Reference ID to identify the object.

TYPE: int

polygon

TYPE: Polygon | None

Source code in werk24/models/v2/models.py
class ReferencePosition(BaseModel):
    """
    Represents the position of a reference in the drawing.
    """

    reference_id: int = Field(
        ...,
        description="Reference ID to identify the object.",
        examples=[12345],
    )
    polygon: Optional[Polygon]