You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dictionary of enumeration members and their values
artifact_type
str
Type of artifact that the global variable is associated with
[optional]
type
str
Data type of the global variable
addr
int
Memory address of the global variable
Example
fromrevengai.models.function_info_input_func_deps_innerimportFunctionInfoInputFuncDepsInner# TODO update the JSON string belowjson="{}"# create an instance of FunctionInfoInputFuncDepsInner from a JSON stringfunction_info_input_func_deps_inner_instance=FunctionInfoInputFuncDepsInner.from_json(json)
# print the JSON string representation of the objectprint(FunctionInfoInputFuncDepsInner.to_json())
# convert the object into a dictfunction_info_input_func_deps_inner_dict=function_info_input_func_deps_inner_instance.to_dict()
# create an instance of FunctionInfoInputFuncDepsInner from a dictfunction_info_input_func_deps_inner_from_dict=FunctionInfoInputFuncDepsInner.from_dict(function_info_input_func_deps_inner_dict)