/* Options: Date: 2024-10-18 04:36:31 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetDocumentUploadPreview.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/documentuploads/{ID}/preview", Verbs="GET") public static class GetDocumentUploadPreview implements IReturn { public Integer ID = null; public Integer getId() { return ID; } public GetDocumentUploadPreview setId(Integer value) { this.ID = value; return this; } private static Object responseType = byte[].class; public Object getResponseType() { return responseType; } } }