Module Values_1.StatisticModelResultSource

The statistic model result.

Sourcetype nonrec t = {
  1. lowerBound : Values_0.NullableDouble.t option;
    (*

    The lower bound.

    *)
  2. upperBound : Values_0.NullableDouble.t option;
    (*

    The upper bound.

    *)
  3. predictedValue : Values_0.NullableDouble.t option;
    (*

    The predicted value.

    *)
  4. actualValue : Values_0.NullableDouble.t option;
    (*

    The actual value.

    *)
  5. date : Values_0.Timestamp.t option;
    (*

    The date.

    *)
  6. inclusionAnnotation : Values_0.InclusionAnnotationValue.t option;
    (*

    The inclusion annotation.

    *)
}
Sourceval make : ?lowerBound:??? -> ?upperBound:??? -> ?predictedValue:??? -> ?actualValue:??? -> ?date:??? -> ?inclusionAnnotation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Values_0.NullableDouble.t | `Enum of string | `Timestamp of Values_0.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