Current section

Files

Jump to
ex_aws_chime lib ex_aws chime telephony_settings.ex
Raw

lib/ex_aws/chime/telephony_settings.ex

defmodule ExAws.Chime.TelephonySettings do
@moduledoc """
Module representing the Chime TelephonySettings data type
See https://docs.aws.amazon.com/chime/latest/APIReference/API_TelephonySettings.html
"""
defstruct [
:inbound_calling,
:outbound_calling,
:sms
]
@type t :: %__MODULE__{
inbound_calling: boolean(),
outbound_calling: boolean(),
sms: boolean()
}
end