Skip to content

RevisionTable

Bases: Reference

Represents a revision table in a technical drawing, documenting changes made

PARAMETER DESCRIPTION
reference_id

Reference ID to identify the object.

TYPE: int

rows

List of rows in the revision table.

TYPE: list[RevisionTableRow]

Source code in werk24/models/v2/models.py
class RevisionTable(Reference):
    """
    Represents a revision table in a technical drawing, documenting changes made
    """

    rows: list[RevisionTableRow] = Field(
        ...,
        description="List of rows in the revision table.",
    )