Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

File metadata and controls

30 lines (21 loc) · 1.12 KB

GetMatchesOutputBody

Properties

Name Type Description Notes
matches List[FunctionMatch] Per-source-function matches. Populated when status=COMPLETED; empty otherwise. [optional]
status str Current workflow status

Example

from revengai.models.get_matches_output_body import GetMatchesOutputBody

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

# convert the object into a dict
get_matches_output_body_dict = get_matches_output_body_instance.to_dict()
# create an instance of GetMatchesOutputBody from a dict
get_matches_output_body_from_dict = GetMatchesOutputBody.from_dict(get_matches_output_body_dict)

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