namespace RobotNet10.FleetManager.Script;
///
/// Represents the current order processing status of a robot.
///
public enum RobotOrderStatus
{
///
/// The robot's current order has encountered an error and cannot be completed.
///
IsError,
///
/// The robot's current order has been successfully completed.
///
IsCompleted,
///
/// The robot is currently processing an order.
///
IsProccessing,
///
/// The robot's current order has been canceled.
///
IsCanceled,
///
/// The robot has no active order (order queue is empty).
///
Empty
}