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 flex v2 web_channels.ex
Raw

lib/twilio/resources/flex/v2/web_channels.ex

# File generated from Twilio's OpenAPI spec — do not edit manually
defmodule Twilio.Resources.Flex.V2.WebChannels do
@moduledoc """
WebChannels resource.
## Properties
| Field | Description |
|-------|-------------|
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `conversation_sid` | The unique string representing the [Conversation resource](https://www.twilio.com/docs/conversations/api/conversation-resource) created. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `identity` | The unique string representing the User created and should be authorized to participate in the Conversation. For more details, see [User Identity & Access Tokens](https://www.twilio.com/docs/conversations/identity).. PII: standard |
"""
@type t :: %__MODULE__{
conversation_sid: String.t() | nil,
identity: String.t() | nil
}
defstruct [:conversation_sid, :identity]
@object_name "flex.v2.web_channel"
def object_name, do: @object_name
end