# `Twilio.Intelligence.V2.Transcript.OperatorResultService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/intelligence/v2/transcript/operator_result_service.ex#L2)

Service for OperatorResult API operations.

Operations: `list`, `fetch`

# `fetch`

```elixir
@spec fetch(Twilio.Client.t(), String.t(), keyword()) ::
  {:ok, Twilio.Resources.Intelligence.V2.Transcript.OperatorResult.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Fetch Public Key Encrypted Operator Results by TranscriptSid

Operation: `FetchEncryptedOperatorResults` | Tags: IntelligenceV2EncryptedOperatorResults

## Query Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `Redacted` | boolean | Grant access to PII Redacted/Unredacted Operator Results. If redaction is enabled, the default is `true` to access redacted operator results. |

# `list`

```elixir
@spec list(Twilio.Client.t(), String.t(), map(), keyword()) ::
  {:ok, Twilio.Page.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Retrieve a list of Operator Results for the given Transcript.

Operation: `ListOperatorResult` | Tags: IntelligenceV2OperatorResult

## Query Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `Redacted` | boolean | Grant access to PII redacted/unredacted Language Understanding operator. If redaction is enabled, the default is True. |

# `stream`

```elixir
@spec stream(Twilio.Client.t(), String.t(), map(), keyword()) :: Enumerable.t()
```

Stream: Retrieve a list of Operator Results for the given Transcript. (lazy auto-pagination).

---

*Consult [api-reference.md](api-reference.md) for complete listing*
