Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.21 KB

File metadata and controls

37 lines (28 loc) · 1.21 KB

FunctionType

Properties

Name Type Description Notes
addr int
artifact_type str [optional]
header FunctionHeader
last_change str [optional]
name str
scope str [optional]
size int
stack_vars Dict[str, FunctionStackVariable] Stack variables keyed by offset hex. [optional]
type str

Example

from revengai.models.function_type import FunctionType

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

# convert the object into a dict
function_type_dict = function_type_instance.to_dict()
# create an instance of FunctionType from a dict
function_type_from_dict = FunctionType.from_dict(function_type_dict)

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