Skip to main content

ResourceType

Enumeration of valid resource types.

Defines the different categories of manufacturing resources that can be used in production operations. Each type represents a specific kind of equipment or asset used in the manufacturing process.

Values

ValueDescription
GENERALGeneric resource without specific categorization
MACHINEStationary manufacturing equipment (mills, lathes, etc.)
WORKSTATIONManual or semi-automated work area for operators
CONVEYORAutomated material handling system for continuous flow
ROBOTIC_ARMProgrammable robotic manipulator for automated tasks
VEHICLEMobile equipment for material transport (AGVs, forklifts)
TOOLSpecialized equipment or implements used in manufacturing

Usage Example

from omm import ResourceType

# Access enum value
value = ResourceType.GENERAL

# Value comparison
if value == ResourceType.GENERAL:
print(f'Value is GENERAL')