Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.13 KB

File metadata and controls

34 lines (25 loc) · 1.13 KB

FunctionHeader

Properties

Name Type Description Notes
addr int
args Dict[str, FunctionArgument] Argument map keyed by ordinal hex (e.g. "0x0", "0x1").
last_change str [optional]
name str
scope str [optional]
type str

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]