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 studio v1 flow execution context.ex
Raw

lib/twilio/resources/studio/v1/flow/execution/context.ex

# File generated from Twilio's OpenAPI spec — do not edit manually
defmodule Twilio.Resources.Studio.V1.Flow.Execution.Context do
@moduledoc """
JSON context for executions
Parent: `/Flows/{FlowSid}/Executions/{Sid}`
## Properties
| Field | Description |
|-------|-------------|
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `account_sid` | The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the ExecutionContext resource. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `context` | The current state of the Flow's Execution. As a flow executes, we save its state in this context. We save data that your widgets can access as variables in configuration fields or in text areas as variable substitution.. PII: standard |
| `execution_sid` | The SID of the context's Execution resource. |
| `flow_sid` | The SID of the Flow. |
| `url` | The absolute URL of the resource.. Format: uri |
"""
@type t :: %__MODULE__{
account_sid: String.t() | nil,
context: String.t() | nil,
execution_sid: String.t() | nil,
flow_sid: String.t() | nil,
url: String.t() | nil
}
defstruct [:account_sid, :context, :execution_sid, :flow_sid, :url]
@object_name "studio.v1.flow.execution.execution_context"
def object_name, do: @object_name
end