RecordAlertDataSource
親種別
Metadata メタデータ型を拡張し、その fullName 項目を継承します。
ファイルのサフィックスおよびディレクトリの場所
RecordAlertDataSource コンポーネントのサフィックスは recordAlertDataSource で、recordAlertDataSources フォルダーに保存されます。
バージョン
RecordAlertDataSource コンポーネントは、API バージョン 54.0 以降で使用できます。
項目
| 項目名 | 説明 |
|---|---|
| apexClass |
|
| isActive |
|
| isProtected |
|
| masterLabel |
|
| type |
|
宣言的なメタデータの定義のサンプル
RecordAlertDataSource コンポーネントの例を次に示します。
1<?xml version="1.0" encoding="UTF-8"?>
2<RecordAlertDataSource xmlns="http://soap.sforce.com/2006/04/metadata">
3 <masterLabel>FeeInfo</masterLabel>
4 <apexClass>SalesforceProvider</apexClass>
5 <isActive>false</isActive>
6</RecordAlertDataSource>前の定義を参照する package.xml の例を次に示します。
1<?xml version="1.0" encoding="UTF-8"?>
2<Package xmlns="http://soap.sforce.com/2006/04/metadata">
3 <namespacePrefix>[namespacePrefix]</namespacePrefix>
4 <types>
5 <members>SalesforceProvider</members>
6 <name>ApexClass</name>
7 </types>
8 <types>
9 <members>*</members>
10 <name>RecordAlertDataSource</name>
11 </types>
12 <version>54.0</version>
13</Package>