Module Values_0.WhatIfPointScenarioSource

Provides the forecast to meet the target for a particular date.

Sourcetype nonrec t = {
  1. date : Timestamp.t;
    (*

    The date that you need the forecast results for.

    *)
  2. value : Double.t;
    (*

    The target value that you want to meet for the provided date.

    *)
}
Sourceval context_ : string
Sourceval make : date:Timestamp.t -> value:Double.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Timestamp of Timestamp.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