Module Values.InsufficientSensorDataSource

Entity that comprises aggregated information on sensors having insufficient data.

Sourcetype nonrec t = {
  1. missingCompleteSensorData : MissingCompleteSensorData.t option;
    (*

    Parameter that describes the total number of sensors that have data completely missing for it.

    *)
  2. sensorsWithShortDateRange : SensorsWithShortDateRange.t option;
    (*

    Parameter that describes the total number of sensors that have a short date range of less than 14 days of data overall.

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