Module Values_0.DeviceInfoSource

Information regarding the device.

Sourcetype nonrec t = {
  1. platformName : PlatformName.t option;
    (*

    Name of the platform that the participant used for the call.

    *)
  2. platformVersion : PlatformVersion.t option;
    (*

    Version of the platform that the participant used for the call.

    *)
  3. operatingSystem : OperatingSystem.t option;
    (*

    Operating system that the participant used for the call.

    *)
}
Sourceval make : ?platformName:??? -> ?platformVersion:??? -> ?operatingSystem:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PlatformName.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