/* Options: Date: 2025-06-07 19:59:15 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: EjecutaCuboOpRemotasRQ.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route("/Utilidades/Consultas/Cubos/OperacionesRemotas") open class EjecutaCuboOpRemotasRQ : IReturn { var IDVista:Int? = null var IDPivot:Int? = null var Parametros:HashMap = HashMap() var Lenguaje:Lenguajes? = null var skip:Int? = null var take:Int? = null var filter:ArrayList = ArrayList() var sort:gridSortOptions? = null var group:ArrayList? = null var groupSummary:ArrayList? = null var totalSummary:ArrayList? = null var requireTotalCount:Boolean? = null var requireGroupCount:Boolean? = null companion object { private val responseType = EjecutaCuboOpRemotasRS::class.java } override fun getResponseType(): Any? = EjecutaCuboOpRemotasRQ.responseType } open class EjecutaCuboOpRemotasRS { @SerializedName("data") var Data:ArrayList> = ArrayList>() var totalCount:Int? = null var Error:String? = null var SQL:String? = null } enum class Lenguajes { Es, Pt, En, } open class gridSortOptions { var selector:String? = null var desc:Boolean? = null }