Skip to main content

StorageType

Enumeration of different types of storage locations.

Defines the various storage areas and configurations available in the facility for holding materials, work-in-progress, and finished goods.

Values

ValueDescription
GENERALMulti-purpose storage area without specific designation
WAREHOUSELarge-scale storage facility for long-term storage
RACKStructured storage system with multiple levels
BUFFERTemporary storage area between operations
QUEUEFIFO storage area for sequential processing

Usage Example

from omm import StorageType

# Access enum value
value = StorageType.GENERAL

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