/* Options: Date: 2025-07-04 08:55:32 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDocumentUploadFile.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* /** * Returns a byte array of the document to be registered */ @Route(Path="/documentuploads/{ID}/download", Verbs="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) open class GetDocumentUploadFile : IReturn { /** * Documentupload ID */ @ApiMember(Description="Documentupload ID", IsRequired=true) var ID:Int? = null companion object { private val responseType = ByteArray::class.java } override fun getResponseType(): Any? = GetDocumentUploadFile.responseType }