"use strict";
export class QuickAddOption {
/** @param {{Name?:string,EntityType?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
Name;
/** @type {string} */
EntityType;
}
export class QuickLookupResponse {
/** @param {{NumberOfAllRecords?:number,Values?:SerializableKeyValuePair<string,string>[],QuickAddOptions?:QuickAddOption[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
NumberOfAllRecords;
/** @type {SerializableKeyValuePair<string,string>[]} */
Values;
/** @type {QuickAddOption[]} */
QuickAddOptions;
}
export class EntityQuicklookup {
/** @param {{Name?:string,LookupValue?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
Name;
/** @type {string} */
LookupValue;
}
JavaScript EntityQuicklookup 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 /csv/reply/EntityQuicklookup HTTP/1.1
Host: test-do-services.klokgroep.nl
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"Name":"String","LookupValue":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"NumberOfAllRecords":0,"Values":[{}],"QuickAddOptions":[{"Name":"String","EntityType":"String"}]}