Parameter
class Parameter
Constructors
Examples
import redivis
workflow = redivis.workflow("username.workflow_name")
parameter = workflow.parameter("my_param").create(values=["foo","bar"])
print(parameter.get_values()) # ["foo", "bar"]
parameter.update(values=["hello","world"])
print(parameter.get_values()) # ["hello", "world"]Attributes
Methods
Was this helpful?

