You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Overall completion as a percentage, weighted by step duration
status
str
Current workflow status
step
str
Name of the current step
step_index
int
Zero-based index of the current step
step_share
int
Percentage points the current step contributes when it completes
steps_total
int
Total number of steps in the workflow
sub_step
str
Phase within the current step, when the step reports one
[optional]
sub_step_done
int
Items completed in the current phase
[optional]
sub_step_total
int
Items the current phase will process, 0 when unknown
[optional]
Example
fromrevengai.models.get_matches_status_output_bodyimportGetMatchesStatusOutputBody# TODO update the JSON string belowjson="{}"# create an instance of GetMatchesStatusOutputBody from a JSON stringget_matches_status_output_body_instance=GetMatchesStatusOutputBody.from_json(json)
# print the JSON string representation of the objectprint(GetMatchesStatusOutputBody.to_json())
# convert the object into a dictget_matches_status_output_body_dict=get_matches_status_output_body_instance.to_dict()
# create an instance of GetMatchesStatusOutputBody from a dictget_matches_status_output_body_from_dict=GetMatchesStatusOutputBody.from_dict(get_matches_status_output_body_dict)