File

src/app/modules/shared/interfaces/serverResponse.ts

Description

server response

Index

Properties

Properties

headers
headers: any
Type : any
Optional
id
id: string
Type : string

api id

params
params: Params
Type : Params

response param

responseCode
responseCode: string
Type : string

response code

result
result: any
Type : any

server result

ts
ts: string
Type : string

time stamp

ver
ver: string
Type : string

api version

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;
}

results matching ""

    No results matching ""