Module Values_0.WhatIfRangeScenarioSource

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

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

    The start date in the date range that you need the forecast results for.

    *)
  2. endDate : Timestamp.t;
    (*

    The end date in the date range that you need the forecast results for.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : startDate:Timestamp.t -> endDate: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