Module Values.CostEstimationTimeRangeSource

The time range of a cost estimation.

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

    The start time of the cost estimation.

    *)
  2. endTime : Timestamp.t option;
    (*

    The end time of the cost estimation.

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