/* Options: Date: 2025-06-07 16:22:57 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetSessionRQ.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/Utilidades/Session") public static class GetSessionRQ implements IReturn { public String sist_sist = null; public String empr_empr = null; public String operacion = null; public String oid = null; public String token = null; public String tokenJson = null; public String user = null; public String getSistSist() { return sist_sist; } public GetSessionRQ setSistSist(String value) { this.sist_sist = value; return this; } public String getEmprEmpr() { return empr_empr; } public GetSessionRQ setEmprEmpr(String value) { this.empr_empr = value; return this; } public String getOperacion() { return operacion; } public GetSessionRQ setOperacion(String value) { this.operacion = value; return this; } public String getOid() { return oid; } public GetSessionRQ setOid(String value) { this.oid = value; return this; } public String getToken() { return token; } public GetSessionRQ setToken(String value) { this.token = value; return this; } public String getTokenJson() { return tokenJson; } public GetSessionRQ setTokenJson(String value) { this.tokenJson = value; return this; } public String getUser() { return user; } public GetSessionRQ setUser(String value) { this.user = value; return this; } private static Object responseType = GetSessionRS.class; public Object getResponseType() { return responseType; } } public static class GetSessionRS { public String response = null; public String getResponse() { return response; } public GetSessionRS setResponse(String value) { this.response = value; return this; } } }