Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.33 KB

File metadata and controls

33 lines (24 loc) · 1.33 KB

GetMatchesStatusOutputBody

Properties

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

Example

from revengai.models.get_matches_status_output_body import GetMatchesStatusOutputBody

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

# convert the object into a dict
get_matches_status_output_body_dict = get_matches_status_output_body_instance.to_dict()
# create an instance of GetMatchesStatusOutputBody from a dict
get_matches_status_output_body_from_dict = GetMatchesStatusOutputBody.from_dict(get_matches_status_output_body_dict)

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