Values_2.QueueSearchCriteriaThe search criteria to be used to return queues. The name and description fields support "contains" queries with a minimum of 2 characters and a maximum of 25 characters. Any queries with character lengths outside of this range will throw invalid results.
type nonrec t = {orConditions : QueueSearchConditionList.t option;A list of conditions which would be applied together with an OR condition.
*)andConditions : QueueSearchConditionList.t option;A list of conditions which would be applied together with an AND condition.
*)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.
*)queueTypeCondition : SearchableQueueType.t option;The type of queue.
*)}val make :
?orConditions:QueueSearchConditionList.t ->
?andConditions:QueueSearchConditionList.t ->
?stringCondition:Values_0.StringCondition.t ->
?queueTypeCondition:SearchableQueueType.t ->
unit ->
t