Base representation of an error response containing common fields to all errors.

interface ProductSearchErrorResponse {
    errors?: ErrorObject[];
    message: string;
    statusCode: number;
}

Hierarchy (View Summary)

Properties

errors?: ErrorObject[]

The errors that caused this error response.

message: string

Describes the error.

statusCode: number

The HTTP status code of the response.