ProcessParameterDTO

Process parameter in order to start and resume a process.

Fields

Type
Name
Description
Optional
Default Value
Boolean  
autoOpenUserTask
Flag to indicate if the task should be opened automatically.
false
true
parameters
A list of process variables.
false
 

Example

{
	"autoOpenUserTask": false,
	"parameters": [
		{
			"name": "stringVariable",
			"variable": {
				"_type": "String",
				"value": "Hello World!",
				"writable": true,
				"readable": true,
				"status": null
			},
			"variableMap": null
		},
		{
			"name": "map",
			"variable": 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
				}
			]
		},
		{
			"name": "lookupVariable",
			"variable": {
				"_type": "ProcessLookup",
				"value": {
					"pk": "S_ACTSTATUS-O",
					"key": null,
					"description": null,
					"symbol": {
						"type": "NONE"
					}
				},
				"writable": true,
				"readable": true,
				"status": null,
				"fieldName": "ActStatusKey.Activity"
			},
			"variableMap": null
		}
	]
}