/* Options: Date: 2025-05-05 17:19:57 Version: 8.61 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: ProcessBulkAllocationRequest.* //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/PerformBulkAllocations", Verbs="POST") public static class ProcessBulkAllocationRequest implements IReturn { public ArrayList Allocations = new ArrayList(); public ArrayList getAllocations() { return Allocations; } public ProcessBulkAllocationRequest setAllocations(ArrayList value) { this.Allocations = value; return this; } private static Object responseType = ProcessBulkAllocationResponse.class; public Object getResponseType() { return responseType; } } public static class ProcessBulkAllocationResponse { } public static class BackOrderAllocation { public Integer Row = null; public String Comm = null; public String BackOrder = null; public Integer getRow() { return Row; } public BackOrderAllocation setRow(Integer value) { this.Row = value; return this; } public String getComm() { return Comm; } public BackOrderAllocation setComm(String value) { this.Comm = value; return this; } public String getBackOrder() { return BackOrder; } public BackOrderAllocation setBackOrder(String value) { this.BackOrder = value; return this; } } }