/* Options: Date: 2025-05-05 17:24:45 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: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: ProcessBulkAllocationRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Mercedes.Agency.API.Shared.POCO; using Mercedes.Agency.Orchestration.API.ServiceModel.BackOrders; namespace Mercedes.Agency.API.Shared.POCO { public partial class BackOrderAllocation { public virtual int Row { get; set; } public virtual string Comm { get; set; } public virtual string BackOrder { get; set; } } } namespace Mercedes.Agency.Orchestration.API.ServiceModel.BackOrders { [Route("/v1/BackOrder/PerformBulkAllocations", "POST")] public partial class ProcessBulkAllocationRequest : IReturn { public virtual List Allocations { get; set; } = []; } public partial class ProcessBulkAllocationResponse { } }