/* Options: Date: 2025-06-07 18:57:04 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: ProcesarPlanoRQ.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/Utilidades/Archivos/ProcesarPlano") open class ProcesarPlanoRQ : IReturn { var IDForma:Int? = null var IDDetalle:Int? = null var Estado:String? = null var DatosLlaveMaestro:HashMap = HashMap() companion object { private val responseType = ProcesarPlanoRS::class.java } override fun getResponseType(): Any? = ProcesarPlanoRQ.responseType } open class ProcesarPlanoRS { var Success:Boolean? = null var Error:String? = null }