A problem with additional properties persisted to an operation.

OperationProblem

interface OperationProblem {
    code: string;
    details?: string;
    message: string;
    severity: string;
}

Properties

code: string

An error code that identifies the type of error that occurred.

OperationProblem

details?: string

Additional details that can help the caller understand or fix the issue.

OperationProblem

message: string

A message that describes the error condition.

OperationProblem

severity: string

The severity of the problem. Possible values: WARNING, ERROR.

OperationProblem