RecordAlertDataSource
Parent Type
This type extends the Metadata metadata type and inherits its
fullName field.
File Suffix and Directory Location
RecordAlertDataSource components have the suffix recordAlertDataSource and are stored in the recordAlertDataSources folder.
Version
RecordAlertDataSource components are available in API version 54.0 and later.
Fields
Field Name | Description |
---|---|
apexClass |
|
isActive |
|
isProtected |
|
masterLabel |
|
type |
|
Declarative Metadata Sample Definition
The following is an example of a RecordAlertDataSource component.
<?xml version="1.0" encoding="UTF-8"?>
<RecordAlertDataSource xmlns="http://soap.sforce.com/2006/04/metadata">
<masterLabel>FeeInfo</masterLabel>
<apexClass>SalesforceProvider</apexClass>
<isActive>false</isActive>
</RecordAlertDataSource>
The following is an example package.xml that references the previous definition.
<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
<namespacePrefix>[namespacePrefix]</namespacePrefix>
<types>
<members>SalesforceProvider</members>
<name>ApexClass</name>
</types>
<types>
<members>*</members>
<name>RecordAlertDataSource</name>
</types>
<version>54.0</version>
</Package>