| All Verbs | /Utilidades/Archivos/CargaPlano |
|---|
"use strict";
export class NovedadesCarga {
/** @param {{Fila?:number,Columna?:number,TipoError?:string,Novedad?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
Fila;
/** @type {number} */
Columna;
/** @type {string} */
TipoError;
/** @type {string} */
Novedad;
}
export class CargaPlanoRS {
/** @param {{Success?:boolean,Error?:string,TokenCarga?:string,IDCarga?:number,Novedades?:NovedadesCarga[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {boolean} */
Success;
/** @type {string} */
Error;
/** @type {string} */
TokenCarga;
/** @type {number} */
IDCarga;
/** @type {NovedadesCarga[]} */
Novedades;
}
export class CargaPlanoRQ {
/** @param {{IDForma?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
IDForma;
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Utilidades/Archivos/CargaPlano HTTP/1.1
Host: soluser-recaudo.sgsas.co
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<CargaPlanoRQ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Administrador.Modelo.General">
<IDForma>0</IDForma>
</CargaPlanoRQ>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<CargaPlanoRS xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Administrador.Modelo.General">
<Error>String</Error>
<IDCarga>0</IDCarga>
<Novedades xmlns:d2p1="http://schemas.datacontract.org/2004/07/Administrador.Modelo">
<d2p1:NovedadesCarga>
<d2p1:Columna>0</d2p1:Columna>
<d2p1:Fila>0</d2p1:Fila>
<d2p1:Novedad>String</d2p1:Novedad>
<d2p1:TipoError>String</d2p1:TipoError>
</d2p1:NovedadesCarga>
</Novedades>
<Success>false</Success>
<TokenCarga>String</TokenCarga>
</CargaPlanoRS>