src/app/modules/shared/interfaces/serverResponse.ts
Properties |
err |
err:
|
Type : any
|
Optional |
errmsg |
errmsg:
|
Type : any
|
Optional |
msgid |
msgid:
|
Type : any
|
Optional |
resmsgid |
resmsgid:
|
Type : string
|
status |
status:
|
Type : string
|
export interface ServerResponse {
/**
* api id
*/
id: string;
/**
* response param
*/
params: Params;
/**
* response code
*/
responseCode: string;
/**
* server result
*/
result: any;
/**
* time stamp
*/
ts: string;
/**
* api version
*/
ver: string;
headers?: any;
}
export interface Params {
resmsgid: string;
msgid?: any;
err?: any;
status: string;
errmsg?: any;
}