-
Notifications
You must be signed in to change notification settings - Fork 0
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.
| 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. |
Returns the name of the additional information field.
String getName()
Duplicates.AdditionalInformationMap info = matchRecord.getAdditionalInformation()?.get(0);
String name = info?.getName();Returns the value of the additional information field.
String getValue()
Duplicates.AdditionalInformationMap info = matchRecord.getAdditionalInformation()?.get(0);
String value = info?.getValue();Returns the underlying native Datacloud.AdditionalInformationMap instance.
Datacloud.AdditionalInformationMap toDatacloudType()
Datacloud.AdditionalInformationMap nativeInfo = info?.toDatacloudType();- Generating Test Records
- Dml
- Soql
- Cmdt
- Duplicates
- Plugins
- DatabaseLayer
- Dml
- MockDml
- MockRecord
- Cmdt
- MockCmdt
- Duplicates
- MockDuplicates
- MockSoql
-
Soql
- Soql.AggregateResult
- Soql.Aggregation
- Soql.Binder
- Soql.Builder
- Soql.Condition
- Soql.ConditionalLogic
- Soql.Criteria
- Soql.Cursor
- Soql.Function
- Soql.InnerQuery
- Soql.InvalidParameterValueException
- Soql.LogicType
- Soql.NullOrder
- Soql.Operation
- Soql.Operator
- Soql.ParentField
- Soql.PreAndPostProcessor
- Soql.QueryLocator
- Soql.Request
- Soql.Scope
- Soql.Selectable
- Soql.SortDirection
- Soql.SortOrder
- Soql.Subquery
- Soql.TypeOf
- Soql.Usage
- Soql.WhenClause