Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

FunctionString

Properties

NameTypeDescriptionNotes
valuestrThe value of the string literal
vaddrintThe vaddr of the string value
sourceStringSourceThe source of the string[optional]

Example

fromrevengai.models.function_stringimportFunctionString# TODO update the JSON string belowjson="{}"# create an instance of FunctionString from a JSON stringfunction_string_instance=FunctionString.from_json(json)
# print the JSON string representation of the objectprint(FunctionString.to_json())
# convert the object into a dictfunction_string_dict=function_string_instance.to_dict()
# create an instance of FunctionString from a dictfunction_string_from_dict=FunctionString.from_dict(function_string_dict)

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