All Verbs | /Utilidades/Consultas/Listados/EjecutarMultiempresa |
---|
export class EjecutaQueryRS
{
public DatosConsulta: { [index:string]: Object; }[];
public TotalRegistros: number;
public TotalGrupos: number;
public SummaryList: Object[];
public constructor(init?: Partial<EjecutaQueryRS>) { (Object as any).assign(this, init); }
}
export enum Lenguajes
{
ES = 'ES',
PT = 'PT',
EN = 'EN',
}
export class EjecutaQueryMxEmpFileRQ
{
public IDVista: number;
public Parametros: { [index: string]: Object; };
public Lenguaje: Lenguajes;
public ListaEmpresas: number[];
public constructor(init?: Partial<EjecutaQueryMxEmpFileRQ>) { (Object as any).assign(this, init); }
}
TypeScript EjecutaQueryMxEmpFileRQ DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Utilidades/Consultas/Listados/EjecutarMultiempresa HTTP/1.1
Host: soluser-recaudo.sgsas.co
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
IDVista: 0,
Parametros:
{
String: {}
},
Lenguaje: ES,
ListaEmpresas:
[
0
]
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { DatosConsulta: [ { String: {} } ], TotalRegistros: 0, TotalGrupos: 0, SummaryList: [ { } ] }