Module Values.MissingSensorDataSource

Entity that comprises aggregated information on sensors having missing data.

Sourcetype nonrec t = {
  1. affectedSensorCount : Integer.t option;
    (*

    Indicates the number of sensors that have atleast some data missing.

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

    Indicates the total number of missing values across all the sensors.

    *)
}
Sourceval make : ?affectedSensorCount:??? -> ?totalNumberOfMissingValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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