Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.1 KB

File metadata and controls

33 lines (24 loc) · 1.1 KB

FunctionHeader

Properties

Name Type Description Notes
last_change str [optional]
name str Name of the function
addr int Memory address of the function
type str Return type of the function
args Dict[str, Argument] Dictionary of function arguments

Example

from revengai.models.function_header import FunctionHeader

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

# convert the object into a dict
function_header_dict = function_header_instance.to_dict()
# create an instance of FunctionHeader from a dict
function_header_from_dict = FunctionHeader.from_dict(function_header_dict)

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