| 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] |
from revengai.models.function_string import FunctionString
# TODO update the JSON string below
json = "{}"
# create an instance of FunctionString from a JSON string
function_string_instance = FunctionString.from_json(json)
# print the JSON string representation of the object
print(FunctionString.to_json())
# convert the object into a dict
function_string_dict = function_string_instance.to_dict()
# create an instance of FunctionString from a dict
function_string_from_dict = FunctionString.from_dict(function_string_dict)