Skip to content

VolumeEstimate

Bases: Quantity

Represents a volume estimate for a part or feature.

PARAMETER DESCRIPTION
value

The value of the quantity.

TYPE: Decimal

unit

The unit of the quantity.

TYPE: str

volume_estimate_type

The type of volume estimate, such as gross or net volume.

TYPE: VolumeEstimateType

Source code in werk24/models/v2/models.py
class VolumeEstimate(Quantity):
    """
    Represents a volume estimate for a part or feature.
    """

    volume_estimate_type: VolumeEstimateType = Field(
        ...,
        description="The type of volume estimate, such as gross or net volume.",
    )