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 voice v1 settings.ex
Raw

lib/twilio/resources/voice/v1/settings.ex

# File generated from Twilio's OpenAPI spec — do not edit manually
defmodule Twilio.Resources.Voice.V1.Settings do
@moduledoc """
Settings resource.
Parent: `/DialingPermissions`
## Properties
| Field | Description |
|-------|-------------|
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `dialing_permissions_inheritance` | `true` if the sub-account will inherit voice dialing permissions from the Master Project; otherwise `false`. |
| `url` | The absolute URL of this resource.. Format: uri |
"""
@type t :: %__MODULE__{
dialing_permissions_inheritance: boolean() | nil,
url: String.t() | nil
}
defstruct [:dialing_permissions_inheritance, :url]
@object_name "voice.v1.dialing_permissions.dialing_permissions_settings"
def object_name, do: @object_name
end