Values_2.ViewSearchCriteriaDefines the search criteria for filtering views.
type nonrec t = {orConditions : ViewSearchConditionList.t option;A list of conditions to be met, where at least one condition must be satisfied.
*)andConditions : ViewSearchConditionList.t option;A list of conditions that must all be satisfied.
*)stringCondition : Values_0.StringCondition.t option;viewTypeCondition : Values_1.ViewType.t option;A condition that filters views by their type.
*)viewStatusCondition : Values_1.ViewStatus.t option;A condition that filters views by their status.
*)}val make :
?orConditions:ViewSearchConditionList.t ->
?andConditions:ViewSearchConditionList.t ->
?stringCondition:Values_0.StringCondition.t ->
?viewTypeCondition:Values_1.ViewType.t ->
?viewStatusCondition:Values_1.ViewStatus.t ->
unit ->
t