> ISPO SDK documentation. [HTML](https://ispo.ai/docs/interfaces/core.ConnectorExecuteOutcomeUnknown.html) · [Documentation index](https://ispo.ai/docs/llms.txt)

# Interface ConnectorExecuteOutcomeUnknown

The provider may have accepted a write even though its reply was lost. This is a resolved result rather than a thrown denial so callers cannot mistake uncertainty for permission to retry.

```typescript
interface ConnectorExecuteOutcomeUnknown {
    code: "dispatch-timeout" | "connection-lost";
    kind: "outcome-unknown";
    retry: "never-automatic";
}
```

Types: [code](#code), [kind](#kind), [retry](#retry)

##### Index

### <a id="properties"></a>Properties

[code](#code) [kind](#kind) [retry](#retry)

## <a id="properties-1"></a>Properties

### <a id="code"></a>`Readonly`code

```typescript
code: "dispatch-timeout" | "connection-lost"
```

### <a id="kind"></a>`Readonly`kind

```typescript
kind: "outcome-unknown"
```

### <a id="retry"></a>`Readonly`retry

```typescript
retry: "never-automatic"
```
