The response message

interface Response {
    body?: any;
    data?: any;
    error?: Error;
    headers?: "http".Header;
    statusCode?: number;
}

Properties

body?: any

the json body content

data?: any

the raw body content

error?: Error

the http process error

headers?: "http".Header

the header content value

statusCode?: number

the http status code