Returned when a previous conflicting operation is still pending and needs to finish before the request can succeed.

The client application should retry the request with exponential backoff up to a point where further delay is unacceptable.
If the error persists, report it using the [Support Portal](https://support.commercetools.com).
interface PendingOperationError {
    code: "PendingOperation";
    message: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

code: "PendingOperation"
message: string

Plain text description of the error.

Generated using TypeDoc