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.
TelemetryActnDefStepAttr
Parent Type
File Suffix and Directory Location
TelemetryActnDefStepAttr components have the suffix .TelemetryActnDefStepAttr and are stored in the TelemetryActnDefStepAttrs folder.
Version
TelemetryActnDefStepAttr components are available in API version 65.0 and later.
Fields
| Field Name | Description |
|---|---|
| allowedValues |
|
| attributeName |
|
| dataType |
|
| description |
|
| developerName |
|
| isProtected |
|
| masterLabel |
|
| maximumValue |
|
| minimumValue |
|
| telemetryActnDefStep |
|
| type |
|
| unitOfMeasure |
|
Declarative Metadata Sample Definition
The following is an example of a TelemetryActnDefStepAttr component.
1<?xml version="1.0" encoding="UTF-8"?>
2<TelemetryActnDefStepAttr xmlns="http://soap.sforce.com/2006/04/metadata">
3 <allowedValues>INACTIVE,CLOSE,OPEN</allowedValues>
4 <attributeName>Position</attributeName>
5 <dataType>int8</dataType>
6 <description>sliding action such as window.</description>
7 <developerName>HoodStatusControl_HoodPositionStep_Position</developerName>
8 <isProtected>false</isProtected>
9 <masterLabel>Hood Position Control</masterLabel>
10 <telemetryActnDefStep>HoodStatusControl_HoodPositionStep</telemetryActnDefStep>
11 <type>Actuator</type>
12 <unitOfMeasure>Action</unitOfMeasure>
13</TelemetryActnDefStepAttr>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>TelemetryActnDefStepAttr</name>
6 </types>
7 <version>65.0</version>
8</Package>