Module Values.Datum

Datum represents a single data point in a query result.

Sourcetype nonrec t = {
  1. scalarValue : ScalarValue.t option;
    (*

    Indicates if the data point is a scalar value such as integer, string, double, or Boolean.

    *)
  2. timeSeriesValue : TimeSeriesDataPointList.t option;
    (*

    Indicates if the data point is a timeseries data type.

    *)
  3. arrayValue : DatumList.t option;
    (*

    Indicates if the data point is an array.

    *)
  4. rowValue : Row.t option;
    (*

    Indicates if the data point is a row.

    *)
  5. nullValue : NullableBoolean.t option;
    (*

    Indicates if the data point is null.

    *)
}
Sourceval make : ?scalarValue:ScalarValue.t -> ?timeSeriesValue:TimeSeriesDataPointList.t -> ?arrayValue:DatumList.t -> ?rowValue:Row.t -> ?nullValue:NullableBoolean.t -> unit -> t
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t