Skip to content

The Duplicates.AdditionalInformationMap Class

GitHub Action edited this page Nov 11, 2025 · 1 revision

Represents additional information associated with a duplicate match record.

This class wraps Datacloud.AdditionalInformationMap and provides name-value pairs with supplemental matching data returned during duplicate detection.

Properties

Property Name Data Type Details
name String The name of the additional information field. Read-only.
value String The value of the additional information field. Read-only.

Methods

getName

Returns the name of the additional information field.

  • String getName()
Duplicates.AdditionalInformationMap info = matchRecord.getAdditionalInformation()?.get(0);
String name = info?.getName();

getValue

Returns the value of the additional information field.

  • String getValue()
Duplicates.AdditionalInformationMap info = matchRecord.getAdditionalInformation()?.get(0);
String value = info?.getValue();

toDatacloudType

Returns the underlying native Datacloud.AdditionalInformationMap instance.

  • Datacloud.AdditionalInformationMap toDatacloudType()
Datacloud.AdditionalInformationMap nativeInfo = info?.toDatacloudType();

apex-database-layer

Home

Core Concepts

Reference Guide

Migration Gudes

Clone this wiki locally