Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.58 KB

File metadata and controls

33 lines (24 loc) · 1.58 KB

OperationWorkflowProgressResultBody

Properties

Name Type Description Notes
done bool Whether the operation has reached a terminal state.
error Status Failure detail, populated only when done is true and the operation failed. [optional]
metadata WorkflowProgress In-flight information and details. [optional]
name str API resource name.
response ResultBody Result, set only when done is true and the operation succeeded. [optional]

Example

from revengai.models.operation_workflow_progress_result_body import OperationWorkflowProgressResultBody

# TODO update the JSON string below
json = "{}"
# create an instance of OperationWorkflowProgressResultBody from a JSON string
operation_workflow_progress_result_body_instance = OperationWorkflowProgressResultBody.from_json(json)
# print the JSON string representation of the object
print(OperationWorkflowProgressResultBody.to_json())

# convert the object into a dict
operation_workflow_progress_result_body_dict = operation_workflow_progress_result_body_instance.to_dict()
# create an instance of OperationWorkflowProgressResultBody from a dict
operation_workflow_progress_result_body_from_dict = OperationWorkflowProgressResultBody.from_dict(operation_workflow_progress_result_body_dict)

[Back to Model list] [Back to API list] [Back to README]