Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

File metadata and controls

33 lines (24 loc) · 1.13 KB

V2FunctionHeader

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.v2_function_header import V2FunctionHeader

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

# convert the object into a dict
v2_function_header_dict = v2_function_header_instance.to_dict()
# create an instance of V2FunctionHeader from a dict
v2_function_header_from_dict = V2FunctionHeader.from_dict(v2_function_header_dict)

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