Newer Version Available

This content describes an older version of this product. View Latest

Expression Set Custom Element Parameter Input

Input representation of a custom element parameter in an expression set.
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:
  • Formula
  • Literal
  • Lookup
  • Parameter
  • Picklist
The default value is Parameter.
Optional 58.0
value String Name of the expression set variable. Required 58.0