Skip to main content

PartType

Enumeration of different types of parts.

Defines the categories of parts used in the manufacturing process based on their source and nature.

Values

ValueDescription
RAW_MATERIALUnprocessed materials used in manufacturing
PURCHASED_COMPONENTPre-made components from external suppliers
WORK_IN_PROGRESSPartially completed products

Usage Example

from omm import PartType

# Access enum value
value = PartType.RAW_MATERIAL

# Value comparison
if value == PartType.RAW_MATERIAL:
print(f'Value is RAW_MATERIAL')