Type Alias ExecutionError

Details of an execution failure.

type ExecutionError = {
    errorCode: string;
    executedAt?: string;
    reason?: string;
}
Index
errorCode: string

The error code identifying the failure reason.

executedAt?: string

Timestamp when the execution failed.

reason?: string

A human-readable explanation of the failure.