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

Service for Sentence API operations.

Operations: `list`, `fetch`

# `fetch`

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

Fetch Public Key Encrypted Sentences by TranscriptSid

Operation: `FetchEncryptedSentences` | Tags: IntelligenceV2EncryptedSentences

## Query Parameters

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

# `list`

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

Get all Transcript Sentences by TranscriptSid

Operation: `ListSentence` | Tags: IntelligenceV2Sentence

## Query Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `Redacted` | boolean | Grant access to PII Redacted/Unredacted Sentences. If redaction is enabled, the default is `true` to access redacted sentences. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `WordTimestamps` | boolean | Returns word level timestamps information, if word_timestamps is enabled. The default is `false`. |

# `stream`

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

Stream: Get all Transcript Sentences by TranscriptSid (lazy auto-pagination).

---

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