/* Options: Date: 2025-06-07 19:14:40 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: EjecutaCuboRQ.* //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/Consultas/Cubos/Ejecucion") public static class EjecutaCuboRQ implements IReturn { public Integer IDVista = null; public Integer IDPivot = null; public HashMap Parametros = null; public Lenguajes Lenguaje = null; public Integer getIdVista() { return IDVista; } public EjecutaCuboRQ setIdVista(Integer value) { this.IDVista = value; return this; } public Integer getIdPivot() { return IDPivot; } public EjecutaCuboRQ setIdPivot(Integer value) { this.IDPivot = value; return this; } public HashMap getParametros() { return Parametros; } public EjecutaCuboRQ setParametros(HashMap value) { this.Parametros = value; return this; } public Lenguajes getLenguaje() { return Lenguaje; } public EjecutaCuboRQ setLenguaje(Lenguajes value) { this.Lenguaje = value; return this; } private static Object responseType = EjecutaCuboRS.class; public Object getResponseType() { return responseType; } } public static class EjecutaCuboRS { public ArrayList> DatosConsulta = null; public Integer TotalRegistros = null; public Integer TotalGrupos = null; public ArrayList SummaryList = null; public ArrayList> getDatosConsulta() { return DatosConsulta; } public EjecutaCuboRS setDatosConsulta(ArrayList> value) { this.DatosConsulta = value; return this; } public Integer getTotalRegistros() { return TotalRegistros; } public EjecutaCuboRS setTotalRegistros(Integer value) { this.TotalRegistros = value; return this; } public Integer getTotalGrupos() { return TotalGrupos; } public EjecutaCuboRS setTotalGrupos(Integer value) { this.TotalGrupos = value; return this; } public ArrayList getSummaryList() { return SummaryList; } public EjecutaCuboRS setSummaryList(ArrayList value) { this.SummaryList = value; return this; } } public static enum Lenguajes { Es, Pt, En; } }