Module Values.MatchingConfigSource

An object that contains configuration settings for the matching process in a rule-based matching workflow.

Sourcetype nonrec t = {
  1. enableTransitiveMatching : Boolean.t option;
    (*

    Enables transitive matching for the rule-based matching workflow. When enabled, records that match through different rules are grouped together into the same match group.

    *)
}
Sourceval make : ?enableTransitiveMatching:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t