/* Options: Date: 2025-07-04 07:50:11 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: GetDocumentUploadFile.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } /** @description Returns a byte array of the document to be registered */ // @Route("/documentuploads/{ID}/download", "GET") // @Api(Description="Returns a byte array of the document to be registered") // @ApiResponse(Description="File is in the message body", StatusCode=200) // @ApiResponse(Description="Unauthorized to read or download documentupload", StatusCode=401) // @ApiResponse(Description="Documentupload not found", StatusCode=410) export class GetDocumentUploadFile implements IReturn { /** @description Documentupload ID */ // @ApiMember(Description="Documentupload ID", IsRequired=true) public ID: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetDocumentUploadFile'; } public getMethod() { return 'GET'; } public createResponse() { return new Blob(); } }