Module Values.RadiosSource

Represents the set of radios and their states on a device. Examples of radios include Wi-Fi, GPS, Bluetooth, and NFC.

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

    True if Wi-Fi is enabled at the beginning of the test. Otherwise, false.

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

    True if Bluetooth is enabled at the beginning of the test. Otherwise, false.

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

    True if NFC is enabled at the beginning of the test. Otherwise, false.

    *)
  4. gps : Boolean.t option;
    (*

    True if GPS is enabled at the beginning of the test. Otherwise, false.

    *)
}
Sourceval make : ?wifi:??? -> ?bluetooth:??? -> ?nfc:??? -> ?gps:??? -> 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