Twilio.Resources.Voice.V3.Transcription (twilio_elixir v0.1.3)

Copy Markdown View Source

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

FieldDescription
operationIdUnique identifier for the transcription operation.

credo:disable-for-next-line Credo.Check.Readability.MaxLineLength

statusCurrent 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
statusUrlURL to poll for the latest operation status.. Format: uri

Summary

Types

t()

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

Functions

object_name()