Interface RESTerrorResponse

interface RESTerrorResponse {
    response: {
        data: string;
        status: number;
        statusText: string;
    };
}

Properties

Properties

response: {
    data: string;
    status: number;
    statusText: string;
}