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 v2 flow flow_test_user.ex
Raw

lib/twilio/resources/studio/v2/flow/flow_test_user.ex

# File generated from Twilio's OpenAPI spec — do not edit manually
defmodule Twilio.Resources.Studio.V2.Flow.FlowTestUser do
@moduledoc """
Test users of a flow
SID prefix: `FW`
Parent: `/Flows/{Sid}`
## Properties
| Field | Description |
|-------|-------------|
| `sid` | Unique identifier of the flow. |
| `test_users` | List of test user identities that can test draft versions of the flow. |
| `url` | The URL of this resource.. Format: uri |
"""
@type t :: %__MODULE__{
sid: String.t() | nil,
test_users: list() | nil,
url: String.t() | nil
}
defstruct [:sid, :test_users, :url]
@object_name "studio.v2.flow.test_user"
def object_name, do: @object_name
@sid_prefix "FW"
def sid_prefix, do: @sid_prefix
end