All Verbs | /form/getfilterform |
---|
"use strict";
export class GetFilterFormsRS {
/** @param {{Data?:{ [index:string]: Object; }[],ErrorMessage?:string,Status?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {{ [index:string]: Object; }[]} */
Data;
/** @type {string} */
ErrorMessage;
/** @type {string} */
Status;
}
export class GetFilterFormsRQ {
/** @param {{Codigo?:number,FormaManual?:string,Tipo?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
Codigo;
/** @type {string} */
FormaManual;
/** @type {string} */
Tipo;
}
JavaScript GetFilterFormsRQ DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /form/getfilterform HTTP/1.1
Host: soluser-recaudo.sgsas.co
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"Codigo":0,"FormaManual":"String","Tipo":"String"}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"Data":[{"String":{}}],"ErrorMessage":"String","Status":"String"}