Returned when an invalid input has been sent.

interface InvalidInputError {
    code: "InvalidInput";
    message: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

code: "InvalidInput"
message: string

Description of the constraints that are not met by the request. For example, "Invalid $propertyName. It may be a non-empty string up to $maxLength".

Generated using TypeDoc