Module Values.MatchItemSource

The Match group object.

Sourcetype nonrec t = {
  1. matchId : String1To255.t option;
    (*

    The unique identifiers for this group of profiles that match.

    *)
  2. profileIds : ProfileIdList.t option;
    (*

    A list of identifiers for profiles that match.

    *)
  3. confidenceScore : Double.t option;
    (*

    A number between 0 and 1, where a higher score means higher similarity. Examining match confidence scores lets you distinguish between groups of similar records in which the system is highly confident (which you may decide to merge), groups of similar records about which the system is uncertain (which you may decide to have reviewed by a human), and groups of similar records that the system deems to be unlikely (which you may decide to reject). Given confidence scores vary as per the data input, it should not be used an absolute measure of matching quality.

    *)
}
Sourceval make : ?matchId:??? -> ?profileIds:??? -> ?confidenceScore:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `List of [> `String of Uuid.t ] list | `String of String1To255.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