Module Values.TelephonySettingsSource

Settings that allow management of telephony permissions for an Amazon Chime user, such as inbound and outbound calling and text messaging.

Sourcetype nonrec t = {
  1. inboundCalling : Boolean.t;
    (*

    Allows or denies inbound calling.

    *)
  2. outboundCalling : Boolean.t;
    (*

    Allows or denies outbound calling.

    *)
  3. sMS : Boolean.t;
    (*

    Allows or denies SMS messaging.

    *)
}
Sourceval context_ : string
Sourceval make : inboundCalling:Boolean.t -> outboundCalling:Boolean.t -> sMS:Boolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t