/* Options: Date: 2025-06-07 18:37:28 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DownloadReportRQ.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/restfiles/GetDownloadReport") open class DownloadReportRQ : IReturn { var reporte:BigDecimal? = null companion object { private val responseType = DownloadReportRS::class.java } override fun getResponseType(): Any? = DownloadReportRQ.responseType } open class DownloadReportRS { var File:String? = null var isDownload:Boolean? = null var error:String? = null }