DomainAutoMerging

data class DomainAutoMerging(val conflictResolution: DomainConflictResolution? = null, val consolidation: DomainConsolidation? = null, val enabled: Boolean, val minAllowedConfidenceScoreForMerging: Double? = null)

Configuration information about the auto-merging process.

Constructors

Link copied to clipboard
constructor(conflictResolution: DomainConflictResolution? = null, consolidation: DomainConsolidation? = null, enabled: Boolean, minAllowedConfidenceScoreForMerging: Double? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Determines how the auto-merging process should resolve conflicts between different profiles. For example, if Profile A and Profile B have the same FirstName and LastName , ConflictResolution specifies which EmailAddress should be used.

Link copied to clipboard

A list of matching attributes that represent matching criteria. If two profiles meet at least one of the requirements in the matching attributes list, they will be merged.

Link copied to clipboard

The flag that enables the auto-merging of duplicate profiles.

Link copied to clipboard

A number between 0 and 1 that represents the minimum confidence score required for profiles within a matching group to be merged during the auto-merge process. A higher score means higher similarity required to merge profiles.