interface ErrorResponse {
    error?: string;
    error_description?: string;
    errors?: ErrorObject[];
    message: string;
    statusCode: number;
}

Properties

error?: string
error_description?: string
errors?: ErrorObject[]
message: string
statusCode: number