Module Values.DeviceMinutesSource

Represents the total (metered or unmetered) minutes used by the resource to run tests. Contains the sum of minutes consumed by all children.

Sourcetype nonrec t = {
  1. total : Double.t option;
    (*

    When specified, represents the total minutes used by the resource to run tests.

    *)
  2. metered : Double.t option;
    (*

    When specified, represents only the sum of metered minutes used by the resource to run tests.

    *)
  3. unmetered : Double.t option;
    (*

    When specified, represents only the sum of unmetered minutes used by the resource to run tests.

    *)
}
Sourceval make : ?total:??? -> ?metered:??? -> ?unmetered:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.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