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 operator_result.ex
Raw

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

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