/* Options: Date: 2024-10-18 04:33:43 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: GetDocumentFile.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/documents/{DocumentID}/download", "GET") export class GetDocumentFile implements IReturn { public DocumentID: string; public DocumentFieldID: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetDocumentFile'; } public getMethod() { return 'GET'; } public createResponse() { return new Blob(); } }