Interface HTTPResponse

interface HTTPResponse {
    data: unknown;
    message: string;
    retcode: number;
}

Properties

Properties

data: unknown

The data returned by the server.

message: string

A message associated with the response.

retcode: number

The status code of the response.