The information of an approval workflow
| Name | Type | Description | Notes |
|---|---|---|---|
| workflow_id | str | The unique ID distinguishing the approval workflow instance among organizations. | |
| operation_id | str | The unique ID of the approval workflow. | |
| operation_name | str | The name of the approval workflow. | |
| current_policies | List[AppWorkflowPolicy] |
from cobo_waas2.models.app_workflow import AppWorkflow
# TODO update the JSON string below
json = "{}"
# create an instance of AppWorkflow from a JSON string
app_workflow_instance = AppWorkflow.from_json(json)
# print the JSON string representation of the object
print(AppWorkflow.to_json())
# convert the object into a dict
app_workflow_dict = app_workflow_instance.to_dict()
# create an instance of AppWorkflow from a dict
app_workflow_from_dict = AppWorkflow.from_dict(app_workflow_dict)