Module Values_2.PredefinedAttributeSearchCriteria

The search criteria to be used to return predefined attributes.

Sourcetype nonrec t = {
  1. orConditions : PredefinedAttributeSearchConditionList.t option;
    (*

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

    *)
  2. andConditions : PredefinedAttributeSearchConditionList.t option;
    (*

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

    *)
  3. stringCondition : Values_0.StringCondition.t option;
}
Sourceval make : ?orConditions:PredefinedAttributeSearchConditionList.t -> ?andConditions:PredefinedAttributeSearchConditionList.t -> ?stringCondition:Values_0.StringCondition.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