/* Options: Date: 2025-06-13 07:17:26 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //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 }