/* Options: Date: 2026-02-12 02:31:00 Version: 8.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://prod-api-agency-orch-mb-dhc.rapp-customers.co.uk //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ProcessBulkStatusAllocationRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/BackOrder/PerformBulkStatusAllocations", Verbs="POST") public static class ProcessBulkStatusAllocationRequest implements IReturn { public ArrayList Allocations = new ArrayList(); public String Filename = null; public ArrayList getAllocations() { return Allocations; } public ProcessBulkStatusAllocationRequest setAllocations(ArrayList value) { this.Allocations = value; return this; } public String getFilename() { return Filename; } public ProcessBulkStatusAllocationRequest setFilename(String value) { this.Filename = value; return this; } private static Object responseType = ProcessBulkStatusAllocationResponse.class; public Object getResponseType() { return responseType; } } public static class ProcessBulkStatusAllocationResponse { } public static class BackOrderStatusAllocation { public Integer Row = null; public String BackOrderReference = null; public String Status = null; public String Message = null; public Integer getRow() { return Row; } public BackOrderStatusAllocation setRow(Integer value) { this.Row = value; return this; } public String getBackOrderReference() { return BackOrderReference; } public BackOrderStatusAllocation setBackOrderReference(String value) { this.BackOrderReference = value; return this; } public String getStatus() { return Status; } public BackOrderStatusAllocation setStatus(String value) { this.Status = value; return this; } public String getMessage() { return Message; } public BackOrderStatusAllocation setMessage(String value) { this.Message = value; return this; } } }