Skip to content

Balloon

Bases: Reference

Represents a balloon annotation in a drawing or part diagram.

PARAMETER DESCRIPTION
reference_id

Reference ID to identify the object.

TYPE: int

center

The (x, y) coordinates of the balloon's center on the diagram.

TYPE: Tuple[int, int]

Source code in werk24/models/v2/models.py
class Balloon(Reference):
    """
    Represents a balloon annotation in a drawing or part diagram.
    """

    center: Tuple[int, int] = Field(
        ...,
        description="The (x, y) coordinates of the balloon's center on the diagram.",
        examples=[(150, 200)],
    )