Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

FunctionMatch

Properties

Name Type Description Notes
function_id int Unique identifier of the function
matched_functions List[MatchedFunction]
confidences List[NameConfidence] [optional]

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]