FrameAppWS

<back to all web services

EjecutaCuboOpRemotasRQ

Requires Authentication
The following routes are available for this service:
All Verbs/Utilidades/Consultas/Cubos/OperacionesRemotas
import java.math.*
import java.util.*
import net.servicestack.client.*
import com.google.gson.annotations.*
import com.google.gson.reflect.*


open class EjecutaCuboOpRemotasRQ
{
    var IDVista:Int? = null
    var IDPivot:Int? = null
    var Parametros:HashMap<String,Object> = HashMap<String,Object>()
    var Lenguaje:Lenguajes? = null
    var skip:Int? = null
    var take:Int? = null
    var filter:ArrayList<Object> = ArrayList<Object>()
    var sort:gridSortOptions? = null
    var group:ArrayList<gridGroupOptions>? = null
    var groupSummary:ArrayList<gridSummaryOptions>? = null
    var totalSummary:ArrayList<gridSummaryOptions>? = null
    var requireTotalCount:Boolean? = null
    var requireGroupCount:Boolean? = null
}

enum class Lenguajes
{
    Es,
    Pt,
    En,
}

open class gridSortOptions
{
    var selector:String? = null
    var desc:Boolean? = null
}

open class gridGroupOptions
{
    var selector:String? = null
    var desc:Boolean? = null
    var isExpanded:Boolean? = null
}

open class gridSummaryOptions
{
    var selector:String? = null
    var summaryType:String? = null
}

open class EjecutaCuboOpRemotasRS
{
    @SerializedName("data") var Data:ArrayList<HashMap<String,Object>> = ArrayList<HashMap<String,Object>>()
    var totalCount:Int? = null
    var Error:String? = null
    var SQL:String? = null
}

Kotlin EjecutaCuboOpRemotasRQ DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /Utilidades/Consultas/Cubos/OperacionesRemotas HTTP/1.1 
Host: soluser-recaudo.sgsas.co 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	IDVista: 0,
	IDPivot: 0,
	Parametros: 
	{
		String: {}
	},
	Lenguaje: ES,
	skip: 0,
	take: 0,
	filter: 
	[
		{
			
		}
	],
	sort: 
	{
		selector: String,
		desc: False
	},
	group: 
	[
		{
			selector: String,
			desc: False,
			isExpanded: False
		}
	],
	groupSummary: 
	[
		{
			selector: String,
			summaryType: String
		}
	],
	totalSummary: 
	[
		{
			selector: String,
			summaryType: String
		}
	],
	requireTotalCount: False,
	requireGroupCount: False
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	data: 
	[
		{
			String: {}
		}
	],
	totalCount: 0,
	Error: String,
	SQL: String
}