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

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

Example

from revengai.models.function_match import FunctionMatch

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

# convert the object into a dict
function_match_dict = function_match_instance.to_dict()
# create an instance of FunctionMatch from a dict
function_match_from_dict = FunctionMatch.from_dict(function_match_dict)

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