| Name | Type | Description | Notes |
|---|---|---|---|
| confidences | List[NameConfidence] | Per-name confidences when canonify was requested | [optional] |
| function_id | int | Source function ID | |
| matched_functions | List[MatchedFunction] | Top candidate matches in similarity-descending order |
fromrevengai.models.function_matchimportFunctionMatch# TODO update the JSON string belowjson="{}"# create an instance of FunctionMatch from a JSON stringfunction_match_instance=FunctionMatch.from_json(json)
# print the JSON string representation of the objectprint(FunctionMatch.to_json())
# convert the object into a dictfunction_match_dict=function_match_instance.to_dict()
# create an instance of FunctionMatch from a dictfunction_match_from_dict=FunctionMatch.from_dict(function_match_dict)