/* Options: Date: 2025-06-07 18:07:42 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DownloadReportRQ.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/restfiles/GetDownloadReport") public static class DownloadReportRQ implements IReturn { public BigDecimal reporte = null; public BigDecimal getReporte() { return reporte; } public DownloadReportRQ setReporte(BigDecimal value) { this.reporte = value; return this; } private static Object responseType = DownloadReportRS.class; public Object getResponseType() { return responseType; } } public static class DownloadReportRS { public String File = null; public Boolean isDownload = null; public String error = null; public String getFile() { return File; } public DownloadReportRS setFile(String value) { this.File = value; return this; } public Boolean getIsDownload() { return isDownload; } public DownloadReportRS setIsDownload(Boolean value) { this.isDownload = value; return this; } public String getError() { return error; } public DownloadReportRS setError(String value) { this.error = value; return this; } } }