| Name | Type | Description | Notes |
|---|---|---|---|
| callees | List[CallEdge] | ||
| callers | List[CallEdge] | ||
| function_id | int |
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)