/* Options: Date: 2025-05-05 17:36:07 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: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ProcessBulkAllocationRequest.* //ExcludeTypes: //InitializeCollections: False //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.* @Route(Path="/v1/BackOrder/PerformBulkAllocations", Verbs="POST") open class ProcessBulkAllocationRequest : IReturn { open var Allocations:ArrayList = ArrayList() companion object { private val responseType = ProcessBulkAllocationResponse::class.java } override fun getResponseType(): Any? = ProcessBulkAllocationRequest.responseType } open class ProcessBulkAllocationResponse { } open class BackOrderAllocation { open var Row:Int? = null open var Comm:String? = null open var BackOrder:String? = null }