Skip to content

MaterialCombination

Bases: Reference

List of Materials that need to be combined (Material_A and Material_B) is a material combination

PARAMETER DESCRIPTION
reference_id

Reference ID to identify the object.

TYPE: int

material_combination

List of materials that need to be used together.

TYPE: list[Material]

Source code in werk24/models/v2/models.py
class MaterialCombination(Reference):
    """
    List of Materials that need to be combined
    (Material_A and Material_B) is a material combination
    """

    material_combination: list[Material] = Field(
        ...,
        description="List of materials that need to be used together.",
    )