Adds a workflow_options dictionary of workflow-level options to the ProcessDefinition object. These options are combined with the options of each task in the workflow. If there is a conflict (same dictionary key), the task option value takes precedence.
Adds a workflow_options property to the Task class that returns the workflow_options dictionary from the ProcessDefinition object.
Adds a task_options property to the Task class that returns the task options from the tasks dictionary in the ProcessDefinition object.
PR Checklist:
[x] I have added my changes to the CHANGELOGor a CHANGELOG entry is not required.
Related Issue(s):
165
Proposed Changes:
workflow_options
dictionary of workflow-level options to theProcessDefinition
object. These options are combined with the options of each task in the workflow. If there is a conflict (same dictionary key), the task option value takes precedence.workflow_options
property to theTask
class that returns theworkflow_options
dictionary from theProcessDefinition
object.task_options
property to theTask
class that returns the task options from thetasks
dictionary in theProcessDefinition
object.PR Checklist: