GET | /v1/GetUserCurrentDataProcess |
---|
"use strict";
export class DataProcessJob {
/** @param {{id?:number,gasId?:string,dateCreated?:string,processedRecords?:number,status?:number,statusName?:string,fileName?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
id;
/** @type {string} */
gasId;
/** @type {string} */
dateCreated;
/** @type {number} */
processedRecords;
/** @type {number} */
status;
/** @type {string} */
statusName;
/** @type {string} */
fileName;
}
export class DataProcessLog {
/** @param {{id?:number,dataProcess_Id?:number,rowNumber?:number,failureReasonId?:number,failureReason?:string,metaData?:string,metaData2?:string,hasFailed?:boolean}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
id;
/** @type {number} */
dataProcess_Id;
/** @type {number} */
rowNumber;
/** @type {number} */
failureReasonId;
/** @type {string} */
failureReason;
/** @type {string} */
metaData;
/** @type {string} */
metaData2;
/** @type {boolean} */
hasFailed;
}
export class CurrentDataProcessResponse extends DataProcessJob {
/** @param {{type?:number,totalRecords?:number,originalFileName?:string,dateStarted?:string,dateFinished?:string,dataProcessResultLogs?:DataProcessLog[],failedCount?:number,successCount?:number,id?:number,gasId?:string,dateCreated?:string,processedRecords?:number,status?:number,statusName?:string,fileName?:string}} [init] */
constructor(init) { super(init); Object.assign(this, init) }
/** @type {number} */
type;
/** @type {number} */
totalRecords;
/** @type {string} */
originalFileName;
/** @type {string} */
dateStarted;
/** @type {string} */
dateFinished;
/** @type {DataProcessLog[]} */
dataProcessResultLogs = [];
/** @type {number} */
failedCount;
/** @type {number} */
successCount;
}
export class CurrentDataProcessRequest {
constructor(init) { Object.assign(this, init) }
}
JavaScript CurrentDataProcessRequest 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.
GET /v1/GetUserCurrentDataProcess HTTP/1.1 Host: uat-api-vehicle-mgt-mb-dhc.rapp-customers.co.uk Accept: text/jsv
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { type: 0, totalRecords: 0, originalFileName: String, dateStarted: String, dateFinished: String, dataProcessResultLogs: [ { id: 0, dataProcess_Id: 0, rowNumber: 0, failureReasonId: 0, failureReason: String, metaData: String, metaData2: String, hasFailed: False } ], failedCount: 0, successCount: 0, id: 0, gasId: String, dateCreated: String, processedRecords: 0, status: 0, statusName: String, fileName: String }