(* Options: Date: 2025-05-05 18:26:16 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 //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ValidateBackOrderBulkAllocationsRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Mercedes.Agency.API.Shared.POCO open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type BackOrderAllocation() = member val Row:Int32 = new Int32() with get,set member val Comm:String = null with get,set member val BackOrder:String = null with get,set [] type InvalidBackOrderAllocation() = inherit BackOrderAllocation() member val ValidationMessage:String = null with get,set [] type BackOrderBulkAllocationVehicles() = member val TotalVehicles:Int32 = new Int32() with get,set member val ValidVehicles:Int32 = new Int32() with get,set member val WarningVehicles:Int32 = new Int32() with get,set member val InvalidVehicles:Int32 = new Int32() with get,set member val Valid:ResizeArray = null with get,set member val Warning:ResizeArray = null with get,set member val Invalid:ResizeArray = null with get,set [] type BackOrderBulkAllocationResponse() = member val Message:String = null with get,set member val Vehicles:BackOrderBulkAllocationVehicles = null with get,set member val Successful:Boolean = new Boolean() with get,set [] [] type ValidateBackOrderBulkAllocationsRequest() = interface IReturn