| Name | Type | Description | Notes |
|---|---|---|---|
| callees | List[CallEdge] | ||
| callers | List[CallEdge] | ||
| function_id | int |
fromrevengai.models.function_call_edgesimportFunctionCallEdges# TODO update the JSON string belowjson="{}"# create an instance of FunctionCallEdges from a JSON stringfunction_call_edges_instance=FunctionCallEdges.from_json(json)
# print the JSON string representation of the objectprint(FunctionCallEdges.to_json())
# convert the object into a dictfunction_call_edges_dict=function_call_edges_instance.to_dict()
# create an instance of FunctionCallEdges from a dictfunction_call_edges_from_dict=FunctionCallEdges.from_dict(function_call_edges_dict)