Module Values.OrStatement

A logical rule statement used to combine other rule statements with OR logic. You provide more than one Statement within the OrStatement.

Sourcetype nonrec t = {
  1. statements : Statements.t;
    (*

    The statements to combine with OR logic. You can use any statements that can be nested.

    *)
}
Sourceval make : statements:Statements.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