Values.RuleConditionSourceAn object that defines the ruleCondition and the ruleName to use in a matching workflow.
type nonrec t = {ruleName : RuleConditionRuleNameString.t;A name for the matching rule. For example: Rule1
*)condition : RuleConditionConditionString.t;A statement that specifies the conditions for a matching rule. If your data is accurate, use an Exact matching function: Exact or ExactManyToMany. If your data has variations in spelling or pronunciation, use a Fuzzy matching function: Cosine, Levenshtein, or Soundex. Use operators if you want to combine (AND), separate (OR), or group matching functions (...). For example: (Cosine(a, 10) AND Exact(b, true)) OR ExactManyToMany(c, d)
*)}val make :
ruleName:RuleConditionRuleNameString.t ->
condition:RuleConditionConditionString.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `String of RuleConditionRuleNameString.t ]) list ]