Values_0.ContactFlowSearchCriteriaThe search criteria to be used to return flows.
type nonrec t = {orConditions : ContactFlowSearchConditionList.t option;A list of conditions which would be applied together with an OR condition.
*)andConditions : ContactFlowSearchConditionList.t option;A list of conditions which would be applied together with an AND condition.
*)stringCondition : StringCondition.t option;typeCondition : ContactFlowType.t option;The type of flow.
*)stateCondition : ContactFlowState.t option;The state of the flow.
*)statusCondition : ContactFlowStatus.t option;The status of the flow.
*)}val make :
?orConditions:ContactFlowSearchConditionList.t ->
?andConditions:ContactFlowSearchConditionList.t ->
?stringCondition:StringCondition.t ->
?typeCondition:ContactFlowType.t ->
?stateCondition:ContactFlowState.t ->
?statusCondition:ContactFlowStatus.t ->
unit ->
t