Package org.openapitools.client.model
Class CompleteExternalTaskDto
- java.lang.Object
-
- org.openapitools.client.model.CompleteExternalTaskDto
-
public class CompleteExternalTaskDto extends Object
CompleteExternalTaskDto
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_LOCAL_VARIABLESstatic StringSERIALIZED_NAME_VARIABLESstatic StringSERIALIZED_NAME_WORKER_ID
-
Constructor Summary
Constructors Constructor Description CompleteExternalTaskDto()
-
Method Summary
-
-
-
Field Detail
-
SERIALIZED_NAME_VARIABLES
public static final String SERIALIZED_NAME_VARIABLES
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_LOCAL_VARIABLES
public static final String SERIALIZED_NAME_LOCAL_VARIABLES
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_WORKER_ID
public static final String SERIALIZED_NAME_WORKER_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
variables
public CompleteExternalTaskDto variables(Map<String,VariableValueDto> variables)
-
putVariablesItem
public CompleteExternalTaskDto putVariablesItem(String key, VariableValueDto variablesItem)
-
getVariables
public Map<String,VariableValueDto> getVariables()
A JSON object containing variable key-value pairs. Each key is a variable name and each value a JSON variable value object with the following properties:- Returns:
- variables
-
setVariables
public void setVariables(Map<String,VariableValueDto> variables)
-
localVariables
public CompleteExternalTaskDto localVariables(Map<String,VariableValueDto> localVariables)
-
putLocalVariablesItem
public CompleteExternalTaskDto putLocalVariablesItem(String key, VariableValueDto localVariablesItem)
-
getLocalVariables
public Map<String,VariableValueDto> getLocalVariables()
A JSON object containing local variable key-value pairs. Local variables are set only in the scope of external task. Each key is a variable name and each value a JSON variable value object with the following properties:- Returns:
- localVariables
-
setLocalVariables
public void setLocalVariables(Map<String,VariableValueDto> localVariables)
-
workerId
public CompleteExternalTaskDto workerId(String workerId)
-
getWorkerId
public String getWorkerId()
**Mandatory.** The ID of the worker who is performing the operation on the external task. If the task is already locked, must match the id of the worker who has most recently locked the task.- Returns:
- workerId
-
setWorkerId
public void setWorkerId(String workerId)
-
-