Module Values.ForecastResultSource

The forecast that's created for your query.

Sourcetype nonrec t = {
  1. timePeriod : DateInterval.t option;
    (*

    The period of time that the forecast covers.

    *)
  2. meanValue : GenericString.t option;
    (*

    The mean value of the forecast.

    *)
  3. predictionIntervalLowerBound : GenericString.t option;
    (*

    The lower limit for the prediction interval.

    *)
  4. predictionIntervalUpperBound : GenericString.t option;
    (*

    The upper limit for the prediction interval.

    *)
}
Sourceval make : ?timePeriod:??? -> ?meanValue:??? -> ?predictionIntervalLowerBound:??? -> ?predictionIntervalUpperBound:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GenericString.t | `Structure of (string * [> `String of YearMonthDay.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