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

NameTypeDescriptionNotes
calleesList[CallEdge]
callersList[CallEdge]
function_idint

Example

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)

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