Module Values.NotStatement

A logical rule statement used to negate the results of another rule statement. You provide one Statement within the NotStatement.

Sourcetype nonrec t = {
  1. statement : Statement.t;
    (*

    The statement to negate. You can use any statement that can be nested.

    *)
}
Sourceval make : statement:Statement.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