/* Options: Date: 2025-07-04 07:47:17 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CreateZipFileForTempLinkAttachments.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/createzipfilefortemplinkattachments/{DocumentID}", "GET") export class CreateZipFileForTempLinkAttachments implements IReturn { public DocumentID: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CreateZipFileForTempLinkAttachments'; } public getMethod() { return 'GET'; } public createResponse() { return ''; } }