Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.37 KB

File metadata and controls

35 lines (26 loc) · 1.37 KB

FunctionNameHistory

Properties

Name Type Description Notes
history_id int The ID of the history record
change_made_by str The user who made the change
function_name str The name of the function
mangled_name str The mangled name of the function
is_debug bool Whether the function is debugged
source_type FunctionSourceType The source type of the function
created_at str The timestamp when the function name was created

Example

from revengai.models.function_name_history import FunctionNameHistory

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

# convert the object into a dict
function_name_history_dict = function_name_history_instance.to_dict()
# create an instance of FunctionNameHistory from a dict
function_name_history_from_dict = FunctionNameHistory.from_dict(function_name_history_dict)

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