Workflow.list_parameters
Workflow.list_parameters(max_results=None) → list<Parameter>
Parameters:
Returns:
Examples:
workflow = redivis.user("imathews").workflow("example_workflow_climate_analysis")
parameters = workflow.list_parameters()
for parameter in parameters:
print(parameter.properties) # Properties will be populated with the parameter.list resource representationWas this helpful?

