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.
Expression Set Custom Element Parameter Input
- Root XML tag
- <ExpressionSetCustomElementParameterInput>
- JSON example
-
1"parameters": [ 2 { 3 "input": true, 4 "name": "Divisor", 5 "output": false, 6 "value": "v1", 7 "type": "Parameter" 8 }, 9 { 10 "input": true, 11 "name": "Dividend", 12 "output": false, 13 "value": "v2", 14 "type": "Parameter" 15 }, 16 { 17 "input": false, 18 "name": "Answer", 19 "output": true, 20 "value": "v3", 21 "type": "Parameter" 22 } 23 ] - Properties
-
Name Type Description Required or Optional Available Version input Boolean Indicates whether the custom element parameter is an input parameter (true) or not (false). Required 58.0 name String Name of the custom element parameter. Required 58.0 output Boolean Indicates whether the custom element parameter is an output parameter (true) or not (false). Required 58.0 type String Type of custom element parameter. Valid values are:The default value is Parameter.- Formula
- Literal
- Lookup
- Parameter
- Picklist
Optional 58.0 value String Name of the expression set variable. Required 58.0