All Verbs | /Utilidades/VerificarAppToken |
---|
"use strict";
export class VerificarAppTokenRS {
/** @param {{Respuesta?:Object,Datos?:Object,IdEmpresa?:number,IdSistema?:number,Login?:string,NombreUsuario?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {Object} */
Respuesta;
/** @type {Object} */
Datos;
/** @type {number} */
IdEmpresa;
/** @type {number} */
IdSistema;
/** @type {string} */
Login;
/** @type {string} */
NombreUsuario;
}
export class VerificarAppTokenRQ {
/** @param {{Id?:string,NombreApp?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
Id;
/** @type {string} */
NombreApp;
}
JavaScript VerificarAppTokenRQ 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/VerificarAppToken HTTP/1.1
Host: soluser-recaudo.sgsas.co
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
Id: String,
NombreApp: String
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { Respuesta: {}, Datos: {}, IdEmpresa: 0, IdSistema: 0, Login: String, NombreUsuario: String }