/* Options: Date: 2025-05-05 17:40:53 SwiftVersion: 6.0 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 //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: ProcessBulkAllocationRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/v1/BackOrder/PerformBulkAllocations", "POST") public class ProcessBulkAllocationRequest : IReturn, Codable { public typealias Return = ProcessBulkAllocationResponse public var allocations:[BackOrderAllocation] = [] required public init(){} } public class ProcessBulkAllocationResponse : Codable { required public init(){} } public class BackOrderAllocation : Codable { public var row:Int? public var comm:String? public var backOrder:String? required public init(){} }