Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
CareBenefitVerifySettings
Parent Type
This type extends the Metadata metadata type and inherits its fullName field.
File Suffix and Directory Location
CareBenefitVerifySettings components have the suffix .careBenefitVerifySettings and are stored in the careBenefitVerifySettings folder.
Version
CareBenefitVerifySettings components are available in API version 52.0 and later.
Fields
| Field Name | Description |
|---|---|
| codeSetType |
|
| defaultNpi |
|
| generalPlanServiceTypeCode |
|
| isDefault |
|
| masterLabel |
|
| organizationName |
|
| serviceApexClass |
|
| serviceNamedCredential |
|
| serviceTypeSourceSystem |
|
| uriPath |
|
Declarative Metadata Sample Definition
This is an example of a CareBenefitVerifySettings component.
1<?xml version="1.0" encoding="UTF-8"?>
2<CareBenefitVerifySettings xmlns="http://soap.sforce.com/2006/04/metadata">
3 <generalPlanServiceTypeCode>abc</generalPlanServiceTypeCode>
4 <isDefault>true</isDefault>
5 <masterLabel>test</masterLabel>
6 <serviceApexClass>TestApexClass</serviceApexClass>
7 <serviceNamedCredential>test</serviceNamedCredential>
8 <uriPath>efgh</uriPath>
9 <serviceTypeSourceSystem>Lorem ipsum dolor</serviceTypeSourceSystem>
10 <codeSetType>Code set</codeSetType>
11 <defaultNpi>Npi info</defaultNpi>
12 <organizationName>Organization name</organizationName>
13</CareBenefitVerifySettings>This 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>CareBenefitVerifySettings</name>
6 </types>
7 <types>
8 <members>*</members>
9 <name>ApexClass</name>
10 </types>
11 <types>
12 <members>*</members>
13 <name>NamedCredential</name>
14 </types>
15 <version>52.0</version>
16</Package>Wildcard Support in the Manifest File
This metadata type supports the wildcard character * (asterisk) in the package.xml manifest file. For information about using the manifest file, see Deploying and Retrieving Metadata with the Zip File.