/* Options: Date: 2025-07-04 08:16:43 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: GetDocumentUploadFile.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.Drawing; using IDB.API.DTO.Document.Operations; namespace IDB.API.DTO.Document.Operations { /// ///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)] public partial class GetDocumentUploadFile : IReturn { /// ///Documentupload ID /// [ApiMember(Description="Documentupload ID", IsRequired=true)] public virtual int ID { get; set; } } }