Newer Version Available
FundraisingConfig
Parent Type
This type extends the Metadata metadata type and inherits its fullName field.
File Suffix and Directory Location
FundraisingConfig components have the suffix .fundraisingConfig and are stored in the fundraisingConfigs folder.
Version
FundraisingConfig components are available in API version 58.0 and later.
Special Access Rules
Your org must have Fundraising Access license as a part of the Nonprofit Cloud to access this object.
Fields
| Field Name | Description |
|---|---|
| donorMatchingMethod |
|
| failedTransactionCount |
|
| householdSoftCreditRole |
|
| installmentExtDayCount |
|
| isHshldSoftCrAutoCrea |
|
| lapsedUnpaidTrxnCount |
|
| masterLabel |
|
| shouldClosePaidRcrCmt |
|
| shouldCreateRcrSchdTrxn |
|
Declarative Metadata Sample Definition
The following is an example of a FundraisingConfig component.
1<?xml version="1.0" encoding="UTF-8"?>
2<FundraisingConfig xmlns="http://soap.sforce.com/2006/04/metadata">
3 <lapsedUnpaidTrxnCount>5</lapsedUnpaidTrxnCount>
4 <householdSoftCreditRole>Admin</householdSoftCreditRole>
5 <isHshldSoftCrAutoCrea>true</isHshldSoftCrAutoCrea>
6 <installmentExtDayCount>7</installmentExtDayCount>
7 <donorMatchingMethod>No_Matching</donorMatchingMethod>
8 <failedTransactionCount>12</failedTransactionCount>
9 <shouldCreateRcrSchdTrxn>true</shouldCreateRcrSchdTrxn>
10 <shouldClosePaidRcrCmt>false</shouldClosePaidRcrCmt>
11 <masterLabel>MasterLabel</masterLabel>
12</FundraisingConfig>The following is an example package.xml that references the previous definition.
1<?xml version="1.0" encoding="UTF-8"?>
2<Package xmlns="http://soap.sforce.com/2006/04/metadata">
3 <types>
4 <members>*</members>
5 <name>FundraisingConfig</name>
6 </types>
7 <version>59.0</version>
8</Package>