Skip to content

Depth

Bases: BaseModel

Represents the depth of a feature, such as a hole or bore.

PARAMETER DESCRIPTION
depth_type

TYPE: DepthType

size

TYPE: Size | None

Source code in werk24/models/v2/models.py
class Depth(BaseModel):
    """
    Represents the depth of a feature, such as a hole or bore.
    """

    depth_type: DepthType
    size: Optional[Size]