Module Values_0.FieldValueUnionSource

Object to store union of Field values.

Sourcetype nonrec t = {
  1. booleanValue : Boolean.t option;
    (*

    A Boolean number value type.

    *)
  2. doubleValue : Double.t option;
    (*

    A Double number value type.

    *)
  3. emptyValue : EmptyFieldValue.t option;
    (*

    An empty value.

    *)
  4. stringValue : FieldStringValue.t option;
    (*

    String value type.

    *)
}
Sourceval make : ?booleanValue:??? -> ?doubleValue:??? -> ?emptyValue:??? -> ?stringValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `String of FieldStringValue.t | `Structure of 'a list ]) 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