Skip to content

Weight

Bases: Quantity, Reference

Represents a weight value with a unit.

PARAMETER DESCRIPTION
reference_id

Reference ID to identify the object.

TYPE: int

value

The value of the quantity.

TYPE: Decimal

unit

The unit of the quantity.

TYPE: str

Source code in werk24/models/v2/models.py
class Weight(Quantity, Reference):
    """
    Represents a weight value with a unit.
    """

    pass