/* Options: Date: 2025-06-07 18:32:11 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: InsertReportRQ.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/restfiles/InsertReportRQ") open class InsertReportRQ : IReturn { var usua_login:String? = null var carp_carp:BigDecimal? = null var rept_rept:BigDecimal? = null var rept_nombre:String? = null var rept_tipo:Int? = null var rept_fecmodi:Date? = null var rept_fecelimi:Date? = null var rept_version:String? = null var rept_tamano:Int? = null var blob_blob:BigDecimal? = null var vist_vist:BigDecimal? = null companion object { private val responseType = InsertReportRS::class.java } override fun getResponseType(): Any? = InsertReportRQ.responseType } open class InsertReportRS { var isInsertado:Boolean? = null var Error:String? = null }