Module Values.DeviceSelectionResultSource

Contains the run results requested by the device selection configuration and how many devices were returned. For an example of the JSON response syntax, see ScheduleRun.

Sourcetype nonrec t = {
  1. filters : DeviceFilters.t option;
    (*

    The filters in a device selection result.

    *)
  2. matchedDevicesCount : Integer.t option;
    (*

    The number of devices that matched the device filter selection criteria.

    *)
  3. maxDevices : Integer.t option;
    (*

    The maximum number of devices to be selected by a device filter and included in a test run.

    *)
}
Sourceval make : ?filters:??? -> ?matchedDevicesCount:??? -> ?maxDevices:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list ]) list ] list ]) 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