VariableDTO

Definition of a process variable.

Fields

Type
Name
Description
Optional
Default Value
String  
name
The name of the variable.
false
 
variable
The variable itself (use either this field or variableMap).
false
 
List  
variableMap
A list of process variables, which are transformed to a map (use either this field or variable).
false
 

Example

{
	"name": "eitherValueViaVariableOrVariableMap",
	"variable": {
		"_type": "String",
		"value": "Hello World!",
		"writable": true,
		"readable": true,
		"status": null
	},
	"variableMap": [
		{
			"name": "stringKey",
			"variable": {
				"_type": "String",
				"value": "Hello World!",
				"writable": true,
				"readable": true,
				"status": null
			},
			"variableMap": null
		},
		{
			"name": "doubleKey",
			"variable": {
				"_type": "Double",
				"value": 42.125,
				"writable": true,
				"readable": true,
				"status": null
			},
			"variableMap": null
		}
	]
}