Interface APIError

interface APIError {
    code: string;
    details?: string;
    message: string;
}

Hierarchy

  • APIError
    • APIError

Properties

Properties

code: string

The error code

APIError

details?: string

The error details

APIError

message: string

The error message

APIError