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 conversations v2 control_plane configuration.ex
Raw

lib/twilio/resources/conversations/v2/control_plane/configuration.ex

# File generated from Twilio's OpenAPI spec — do not edit manually
defmodule Twilio.Resources.Conversations.V2.ControlPlane.Configuration do
@moduledoc """
Configuration resource.
Default webhook configuration for Conversation-level events under this Configuration.
## Properties
| Field | Description |
|-------|-------------|
| `method` | HTTP method used to invoke the webhook URL.. Values: `POST`, `GET` |
| `url` | Destination URL for webhooks.. Format: uri |
"""
@type t :: %__MODULE__{
method: String.t(),
url: String.t()
}
defstruct [:method, :url]
@object_name "conversations.v2.status_callback_config"
def object_name, do: @object_name
end