Returned when the service is having trouble handling the load.

The client application should retry the request with exponential backoff up to a point where further delay is unacceptable.
interface OverCapacityError {
    code: "OverCapacity";
    message: string;
    [key: string]: any;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: any

Properties

Properties

code: "OverCapacity"

Error identifier.

message: string

Plain text description of the error.