/* Options: Date: 2025-06-07 18:17:52 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: ReportLogRQ.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/restfiles/ReportLog") open class ReportLogRQ : IReturn { var idReport:BigDecimal? = null var Parametros:String? = null companion object { private val responseType = ReportLogRS::class.java } override fun getResponseType(): Any? = ReportLogRQ.responseType } open class ReportLogRS { var isLog:Boolean? = null var error:String? = null }