| Name | Type | Description | Notes |
|---|---|---|---|
| matches | List[FunctionMatch] | Per-source-function matches. Populated when status=COMPLETED; empty otherwise. | [optional] |
| status | str | Current workflow status |
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)