| Name | Type | Description | Notes |
|---|---|---|---|
| messages | List[ProgressMessage] | Log messages emitted during execution | |
| status | str | Current workflow status | |
| step | str | Name of the current step | |
| step_index | int | Zero-based index of the current step | |
| steps_total | int | Total number of steps in the workflow |
fromrevengai.models.workflow_progressimportWorkflowProgress# TODO update the JSON string belowjson="{}"# create an instance of WorkflowProgress from a JSON stringworkflow_progress_instance=WorkflowProgress.from_json(json)
# print the JSON string representation of the objectprint(WorkflowProgress.to_json())
# convert the object into a dictworkflow_progress_dict=workflow_progress_instance.to_dict()
# create an instance of WorkflowProgress from a dictworkflow_progress_from_dict=WorkflowProgress.from_dict(workflow_progress_dict)