# `Twilio.Resources.Voice.V3.Transcription`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/resources/voice/v3/transcription.ex#L2)

Transcription resource.

# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
Status response for a transcription operation. Returns the current state of the operation along with the full transcription resource. Poll this response to track progress from acceptance through to completion or failure. 

## Properties

| Field | Description |
|-------|-------------|
| `operationId` | Unique identifier for the transcription operation. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `status` | Current status of the transcription operation. PENDING: accepted but not yet started. RUNNING: currently in progress. COMPLETED: successfully completed. FAILED: failed and cannot be completed. . Values: `PENDING`, `RUNNING`, `COMPLETED`, `FAILED` |
| `statusUrl` | URL to poll for the latest operation status.. Format: uri |

# `t`

```elixir
@type t() :: %Twilio.Resources.Voice.V3.Transcription{
  operationId: String.t(),
  status: String.t(),
  statusUrl: String.t(),
  transcription: String.t()
}
```

# `object_name`

---

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