Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.12 KB

File metadata and controls

31 lines (22 loc) · 1.12 KB

FunctionMatch

Properties

NameTypeDescriptionNotes
confidencesList[NameConfidence]Per-name confidences when canonify was requested[optional]
function_idintSource function ID
matched_functionsList[MatchedFunction]Top candidate matches in similarity-descending order

Example

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)

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