Module Values_2.ViewSearchCriteria

Defines the search criteria for filtering views.

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

    A list of conditions to be met, where at least one condition must be satisfied.

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

    A list of conditions that must all be satisfied.

    *)
  3. stringCondition : Values_0.StringCondition.t option;
  4. viewTypeCondition : Values_1.ViewType.t option;
    (*

    A condition that filters views by their type.

    *)
  5. viewStatusCondition : Values_1.ViewStatus.t option;
    (*

    A condition that filters views by their status.

    *)
}
Sourceval make : ?orConditions:ViewSearchConditionList.t -> ?andConditions:ViewSearchConditionList.t -> ?stringCondition:Values_0.StringCondition.t -> ?viewTypeCondition:Values_1.ViewType.t -> ?viewStatusCondition:Values_1.ViewStatus.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