Packages

Complete Twilio SDK for Elixir — 37 products, 494 services, 467 resources. Auto-generated from official OpenAPI specs. Finch HTTP/2, retries with jitter, webhooks, TwiML, telemetry, streaming pagination.

Current section

Files

Jump to
twilio_elixir lib twilio resources intelligence v2 transcript sentence.ex
Raw

lib/twilio/resources/intelligence/v2/transcript/sentence.ex

# File generated from Twilio's OpenAPI spec — do not edit manually
defmodule Twilio.Resources.Intelligence.V2.Transcript.Sentence do
@moduledoc """
Sentence resource.
Parent: `/Transcripts/{Sid}`
## Properties
| Field | Description |
|-------|-------------|
| `location` | The location of the encrypted sentences.. Format: uri |
| `url` | Format: uri |
"""
@type t :: %__MODULE__{
location: String.t() | nil,
transcript_sid: String.t() | nil,
url: String.t() | nil
}
defstruct [:location, :transcript_sid, :url]
@object_name "intelligence.v2.transcript.encrypted_sentences"
def object_name, do: @object_name
end