Module Values.CallingSettingsSource

Defines the calling feature permissions and settings for users in a security group, controlling what types of calls users can initiate and participate in.

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

    Specifies whether users can start one-to-one calls.

    *)
  2. canVideoCall : Boolean.t option;
    (*

    Specifies whether users can make video calls (as opposed to audio-only calls). Valid only when audio call(canStart11Call) is enabled.

    *)
  3. forceTcpCall : Boolean.t option;
    (*

    When enabled, forces all calls to use TCP protocol instead of UDP for network traversal.

    *)
}
Sourceval make : ?canStart11Call:??? -> ?canVideoCall:??? -> ?forceTcpCall:??? -> 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