ProcessResultContainerDTO

The result of a process execution.

Fields

Type
Name
Description
Optional
Default Value
String  
instanceId
The instance id of the process.
false
 
String  
executionId
The execution id of the process.
false
 
String  
definitionId
The definition id of the process.
false
 
status
The state of the process.
false
 
parameters
A list of outgoing process variables.
false
 

Example

{
	"instanceId": "0e770cb2-7056-11e6-8b37-94de800bf583",
	"executionId": "0e770cb2-7056-11e6-4568-94de800bf583",
	"definitionId": null,
	"status": "WAITING",
	"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
				}
			]
		}
	]
}