Workflow.update_variables
Workflow.update_variables(variables) → void
Parameters:
Returns:
Examples:
import redivis
workflow = redivis.workflow("my.workflow")
workflow.update_variables([
{
# All attrs other than "name" are optional.
# To remove a value, set it to None
"name": "var_name",
"label": "my_label",
"description": "my_description",
"valueLabels": [
{ "value": "1", "label": "Yes"},
{ "value": "2", "label": "No" },
...
]
}
...
])Last updated
Was this helpful?

