Newer Version Available
ClauseCatgConfiguration
Represents the configuration about the library
category that can be used by a user in their response document.
Parent Type
This type extends Metadata metadata type and
inherits fullName field.
File Suffix and Directory Location
ClauseCatgConfiguration components have the suffix .clauseCatgConfiguration and are stored in the clauseCatgConfigurations folder.
Version
ClauseCatgConfiguration components are available in API version 57.0 and later.
Special Access Rules
ClauseManagementAddOn license is required.
Fields
| Field Name | Description |
|---|---|
| description |
|
| isProtected |
|
| masterLabel |
|
| usageType |
|
Declarative Metadata Sample Definition
The following is an example of a ClauseCatgConfiguration component.
1<?xml version="1.0" encoding="UTF-8"?>
2<ClauseCatgConfiguration
3 xmlns="http://soap.sforce.com/2006/04/metadata">
4 <description>This is how to add description for Contract Clause Category</description>
5 <usageType>ContractClauseCategory</usageType>
6 <isProtected>false</isProtected>
7 <masterLabel>Contract Clause Cat</masterLabel>
8</ClauseCatgConfiguration>The following is an example package.xml that references the previous definition.
1<?xml version="1.0" encoding="UTF-8"?>
2<Package
3 xmlns="http://soap.sforce.com/2006/04/metadata">
4 <fullName>Pkg</fullName>
5 <types>
6 <members>DisclosureCategory</members>
7 <members>ContractClauseCategory</members>
8 <name>ClauseCatgConfiguration</name>
9 </types>
10 <version>57.0</version>
11</Package>