Skip to content

Note

Bases: Feature

Represents a note in a technical drawing.

PARAMETER DESCRIPTION
reference_id

Reference ID to identify the object.

TYPE: int

label

A short description of the feature in a human-readable format.

TYPE: str

confidence

Confidence in the feature extraction or interpretation.

TYPE: Confidence | None

note_type

The type of the note, specifying whether it is a canvas note, sectional note, or a sectional feature.

TYPE: NoteType

Source code in werk24/models/v2/models.py
class Note(Feature):
    """
    Represents a note in a technical drawing.
    """

    note_type: NoteType = Field(
        ...,
        description=(
            "The type of the note, specifying whether it is a canvas note, sectional note, "
            "or a sectional feature."
        ),
    )