Returned when certain API-specific constraints were not met. For example, the specified Discount Code was never applied and cannot be updated.

interface InternalConstraintViolatedError {
    code: "InternalConstraintViolated";
    message: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

code: "InternalConstraintViolated"
message: string

Plain text description of the constraints that were violated.

Generated using TypeDoc