/* Options: Date: 2026-03-31 18:17:16 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: GetLinkedDocuments.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/documents/{DocumentID}/linkeddocuments", "GET") export class GetLinkedDocuments implements IReturn { public DocumentID: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetLinkedDocuments'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }