Skip to content

Reference

Bases: BaseModel

Base model that allows refering to a specific object by its reference_id.

PARAMETER DESCRIPTION
reference_id

Reference ID to identify the object.

TYPE: int

Source code in werk24/models/v2/models.py
class Reference(BaseModel):
    """
    Base model that allows refering to a specific object by its reference_id.
    """

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