| Name |
Type |
Description |
Notes |
| addr |
int |
Memory address (GlobalVariable). |
[optional] |
| artifact_type |
str |
|
[optional] |
| last_change |
str |
|
[optional] |
| members |
object |
|
[optional] |
| name |
str |
|
|
| scope |
str |
|
[optional] |
| size |
int |
Total byte size (Struct, GlobalVariable). |
[optional] |
| type |
str |
Underlying type (TypeDefinition, GlobalVariable). |
[optional] |
from revengai.models.function_dependency import FunctionDependency
# TODO update the JSON string below
json = "{}"
# create an instance of FunctionDependency from a JSON string
function_dependency_instance = FunctionDependency.from_json(json)
# print the JSON string representation of the object
print(FunctionDependency.to_json())
# convert the object into a dict
function_dependency_dict = function_dependency_instance.to_dict()
# create an instance of FunctionDependency from a dict
function_dependency_from_dict = FunctionDependency.from_dict(function_dependency_dict)
[Back to Model list] [Back to API list] [Back to README]