Module Values.FieldSource

Contains a value.

Sourcetype nonrec t = {
  1. isNull : BoxedBoolean.t option;
    (*

    A NULL value.

    *)
  2. booleanValue : BoxedBoolean.t option;
    (*

    A value of Boolean data type.

    *)
  3. longValue : BoxedLong.t option;
    (*

    A value of long data type.

    *)
  4. doubleValue : BoxedDouble.t option;
    (*

    A value of double data type.

    *)
  5. stringValue : String_.t option;
    (*

    A value of string data type.

    *)
  6. blobValue : Blob.t option;
    (*

    A value of BLOB data type.

    *)
  7. arrayValue : ArrayValue.t option;
    (*

    An array of values.

    *)
}
Sourceval make : ?isNull:??? -> ?booleanValue:??? -> ?longValue:??? -> ?doubleValue:??? -> ?stringValue:??? -> ?blobValue:??? -> ?arrayValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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