namespace WMS_GIRAF_Interface.Models;
public class OutputRequestBySkuReturn
{
///
/// The status of the request
/// 0:UnknownError;1:Created;2:WrongParameters;3:NoStorageSpace;4:MechanicalIssue;5:UnknownPost
///
public string status { get; set; }
///
/// If status = 1 : post where items will be unloaded
///
public string? evacuationPost { get; set; }
///
/// If status = 1 : mandatory
///
public string? estimatedExitTime { get; set; }
///
/// if status !=1 error details
///
public string? errorDetails { get; set; }
}