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

NameTypeDescriptionNotes
history_idintThe ID of the history record
change_made_bystrThe user who made the change
function_namestrThe name of the function
mangled_namestrThe mangled name of the function
is_debugboolWhether the function is debugged
source_typeFunctionSourceTypeThe source type of the function
created_atstrThe timestamp when the function name was created

Example

fromrevengai.models.function_name_historyimportFunctionNameHistory# TODO update the JSON string belowjson="{}"# create an instance of FunctionNameHistory from a JSON stringfunction_name_history_instance=FunctionNameHistory.from_json(json)
# print the JSON string representation of the objectprint(FunctionNameHistory.to_json())
# convert the object into a dictfunction_name_history_dict=function_name_history_instance.to_dict()
# create an instance of FunctionNameHistory from a dictfunction_name_history_from_dict=FunctionNameHistory.from_dict(function_name_history_dict)

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