/* Options: Date: 2025-06-13 07:01:41 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: 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 }