Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.36 KB

File metadata and controls

36 lines (27 loc) · 1.36 KB

V2FunctionType

Properties

Name Type Description Notes
last_change str [optional]
addr int Memory address of the function
size int Size of the function in bytes
header V2FunctionHeader Function header information
stack_vars Dict[str, StackVariable] [optional]
name str Name of the function
type str Return type of the function
artifact_type str Type of artifact that the structure is associated with [optional] [default to 'Function']

Example

from revengai.models.v2_function_type import V2FunctionType

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

# convert the object into a dict
v2_function_type_dict = v2_function_type_instance.to_dict()
# create an instance of V2FunctionType from a dict
v2_function_type_from_dict = V2FunctionType.from_dict(v2_function_type_dict)

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