Skip to main content

VehicleType

Enumeration of available vehicle types.

Defines the different categories of vehicles that can be used for material handling and transportation within the facility.

Values

ValueDescription
GENERIC_AUTOMATED_VEHICLEGeneral-purpose autonomous vehicle
GENERIC_MANUAL_VEHICLEGeneral-purpose manually operated vehicle
AUTOMATED_MOBILE_ROBOTSpecialized autonomous robot for material handling
MANUAL_FORKLIFTTraditional operator-driven forklift

Usage Example

from omm import VehicleType

# Access enum value
value = VehicleType.GENERIC_AUTOMATED_VEHICLE

# Value comparison
if value == VehicleType.GENERIC_AUTOMATED_VEHICLE:
print(f'Value is GENERIC_AUTOMATED_VEHICLE')