/* Options: Date: 2025-05-05 17:17:04 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: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ProcessBulkAllocationRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class BackOrderAllocation { public Row: number; public Comm: string; public BackOrder: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ProcessBulkAllocationResponse { public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/v1/BackOrder/PerformBulkAllocations", "POST") export class ProcessBulkAllocationRequest implements IReturn { public Allocations: BackOrderAllocation[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ProcessBulkAllocationRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new ProcessBulkAllocationResponse(); } }