Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 984 Bytes

File metadata and controls

31 lines (22 loc) · 984 Bytes

FunctionStringItem

Properties

Name Type Description Notes
source str
vaddr int
value str

Example

from revengai.models.function_string_item import FunctionStringItem

# TODO update the JSON string below
json = "{}"
# create an instance of FunctionStringItem from a JSON string
function_string_item_instance = FunctionStringItem.from_json(json)
# print the JSON string representation of the object
print(FunctionStringItem.to_json())

# convert the object into a dict
function_string_item_dict = function_string_item_instance.to_dict()
# create an instance of FunctionStringItem from a dict
function_string_item_from_dict = FunctionStringItem.from_dict(function_string_item_dict)

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