| Name | Type | Description | Notes |
|---|---|---|---|
| value | str | The value of the string literal | |
| vaddr | int | The vaddr of the string value | |
| source | StringSource | The source of the string | [optional] |
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)