Current section
Files
Jump to
Current section
Files
lib/ex_aws/chime/user_settings.ex
defmodule ExAws.Chime.UserSettings do
@moduledoc """
Module representing the Chime UserSettings data type
See https://docs.aws.amazon.com/chime/latest/APIReference/API_UserSettings.html
"""
alias ExAws.Chime.TelephonySettings
defstruct [
:telephony
]
@type t :: %__MODULE__{
telephony: TelephonySettings.t() | nil
}
end