| 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 | |
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]