IndustriesAutomotiveSettings
Represents the settings for enabling
features like Automotive Cloud, Automotive Service Excellence, and Automotive Scheduler.
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
IndustriesAutomotiveSettings values are stored in a single file named IndustriesAutomotive.settings in the settings directory.
Version
IndustriesAutomotiveSettings components are available in API version 56.0 and later.
Fields
Field Name | Field Type | Description |
---|---|---|
enableAutomotiveCloud | boolean | Indicates whether the Automotive Cloud is enabled (true) or disabled (false) for your org. The default value is false. This field is available from API version 56.0 and later. |
enableAutomotiveServiceExcellence | boolean | Indicates whether the Service Excellence features of Automotive Cloud are enabled (true) or disabled (false) for your org. The default value is false. This field is available from API version 56.0 and later. |
enableAutomotiveScheduler | boolean | Indicates whether the Salesforce Scheduler features of Automotive Cloud are enabled (true) or disabled (false) for your org. The default value is false. This field is available from API version 58.0 and later. |
enableConnectedVehSrvcsCmpnt | boolean | Indicates whether the Connected Vehicle Services component of Automotive Cloud is enabled (true) or disabled (false) for your org. The default value is false. This field is available from API version 63.0 and later. |
Declarative Metadata Sample Definition
The following is an example of a IndustriesAutomotiveSettings component.
<?xml version="1.0" encoding="UTF-8"?>
<IndustriesAutomotiveSettings xmlns="http://soap.sforce.com/2006/04/metadata">
<enableAutomotiveCloud>false</enableAutomotiveCloud>
<enableAutomotiveServiceExcellence>false</enableAutomotiveServiceExcellence>
<enableAutomotiveScheduler>false</enableAutomotiveScheduler>
<enableConnectedVehSrvcsCmpnt>true</enableConnectedVehSrvcsCmpnt>
</IndustriesAutomotiveSettings>
The following is an example package.xml that references the previous definition.
<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
<types>
<members>IndustriesAutomotiveSettings</members>
<name>Settings</name>
</types>
<version>56.0</version>
</Package>