Module Values_2.QuickConnectSearchCriteria

The search criteria to be used to return quick connects.

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

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

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

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

    *)
  3. stringCondition : Values_0.StringCondition.t option;
    (*

    A leaf node condition which can be used to specify a string condition. The currently supported values for FieldName are name, description, and resourceID.

    *)
}
Sourceval make : ?orConditions:QuickConnectSearchConditionList.t -> ?andConditions:QuickConnectSearchConditionList.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