/* Options: Date: 2026-03-31 17:04:44 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDocumentInfoOperation.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } /** @description Download DocumentInfoXml. */ // @Route("/documents/{DocID}/documentinfo", "GET") // @Api(Description="Download DocumentInfoXml.") export class GetDocumentInfoOperation implements IReturn { /** @description ID of the Document Registration */ // @ApiMember(Description="ID of the Document Registration", IsRequired=true) public DocID: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetDocumentInfoOperation'; } public getMethod() { return 'GET'; } public createResponse() { return new Blob(); } }