/* Options: Date: 2025-06-07 18:18:54 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: GetSessionRQ.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/Utilidades/Session") open class GetSessionRQ : IReturn { var sist_sist:String? = null var empr_empr:String? = null var operacion:String? = null var oid:String? = null var token:String? = null var tokenJson:String? = null var user:String? = null companion object { private val responseType = GetSessionRS::class.java } override fun getResponseType(): Any? = GetSessionRQ.responseType } open class GetSessionRS { var response:String? = null }