Module Values.NotInExpressionSource

Specifies that a value is not in the expression.

Sourcetype nonrec t = {
  1. columnName : String_.t;
    (*

    The name of the column.

    *)
  2. values : StringList.t;
    (*

    The value that might not be in the expression.

    *)
}
Sourceval context_ : string
Sourceval make : columnName:String_.t -> values:StringList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.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