Interface InvalidParamErrorReason

The error reason given when a request contained an invalid parameter.

interface InvalidParamErrorReason {
    error: string;
    name: string;
    value: DocumentType;
}

Properties

Properties

error: string

The reason it is invalid.

name: string

The name of the parameter.

value: DocumentType

The value given for the parameter.