Contains extra information for ErrorCode.InvalidArgument errors.

interface ErrorUserInfoInvalidArgument {
    partialResult?: any;
    paramName: string;
}

Hierarchy (view full)

Properties

partialResult?: any

Holds the response that would have been returned had an error not occurred but in an incomplete or partial state. The format is identical to the promised value of the original request.

paramName: string

Name of the parameter that is invalid.