A list of error responses returned when a request is unsuccessful.

ErrorList

interface ErrorList {
    errors: Error[];
}

Properties

Properties

errors: Error[]

An array of Error objects representing individual errors encountered during the request.

ErrorList