/* Options: Date: 2024-10-18 04:14:30 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddMessageQueue.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class AddMessageQueueResonse { public ID: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/messagequeue", "POST") export class AddMessageQueue implements IReturn { public FromProgCode: string; public ToProgCode: string; public Xml: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AddMessageQueue'; } public getMethod() { return 'POST'; } public createResponse() { return new AddMessageQueueResonse(); } }