Current section

Files

Jump to
ex_aws_chime lib ex_aws telephony_settings.ex~
Raw

lib/ex_aws/telephony_settings.ex~

defmodule ExAws.Chime.TelephonySettings do
defstruct [
:inbound_calling,
:outbound_calling,
:sms
]
@type t :: %__MODULE__{
inbound_calling: boolean(),
outbound_calling: boolean(),
sms: boolean()
}
end