Newer Version Available
IndustriesSettings
This type extends the Metadata metadata type and inherits its
fullName field.
In the package manifest, all organization settings metadata types are accessed using the Settings name. See Settings for more details.
File Suffix and Directory Location
IndustriesSettings are stored in a single file named Industries.settings in the settings directory.
Version
Industries settings for Salesforce Scheduler are available in API version 55.0 and later.
Fields
| Field Name | Field Type | Description |
|---|---|---|
| enableMultipleTopicsForShiftsOrgPref | boolean | Indicates whether the multiple topics for shifts feature is enabled (true) or disabled (false). The default value is false. |
Declarative Metadata Sample Definition
The following is an example of a Industries.Settings metadata file.
1<?xml version="1.0" encoding="UTF-8"?>
2<IndustriesSettings xmlns="http://soap.sforce.com/2006/04/metadata">
3 <enableMultipleTopicsForShiftsOrgPref>true</enableMultipleTopicsForShiftsOrgPref>
4</IndustriesSettings>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>Industries</members>
5 <name>Settings</name>
6 </types>
7 <version>55.0</version>
8</Package>