Module Values.OrConditionSource

A list of conditions which would be applied together with an OR condition.

Sourcetype nonrec t = {
  1. andConditions : AndConditions.t option;
    (*

    A list of conditions which would be applied together with an AND condition.

    *)
  2. tagCondition : TagCondition.t option;
    (*

    A leaf node condition which can be used to specify a tag condition.

    *)
}
Sourceval make : ?andConditions:??? -> ?tagCondition:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `Structure of (string * [> `String of TagKey.t ]) 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