Module Values.FieldValueSource

Object for case field values.

Sourcetype nonrec t = {
  1. id : FieldId.t;
    (*

    Unique identifier of a field.

    *)
  2. value : FieldValueUnion.t;
    (*

    Union of potential field value types.

    *)
}
Sourceval context_ : string
Sourceval make : id:FieldId.t -> value:FieldValueUnion.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FieldId.t | `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `String of FieldValueUnionStringValueString.t | `Structure of 'a list ]) 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