Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

FunctionCallEdges

Properties

Name Type Description Notes
callees List[CallEdge]
callers List[CallEdge]
function_id int

Example

from revengai.models.function_call_edges import FunctionCallEdges

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

# convert the object into a dict
function_call_edges_dict = function_call_edges_instance.to_dict()
# create an instance of FunctionCallEdges from a dict
function_call_edges_from_dict = FunctionCallEdges.from_dict(function_call_edges_dict)

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