Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

V2FunctionInfo

Properties

Name Type Description Notes
func_types V2FunctionType [optional]
func_deps List[V2FunctionInfoFuncDepsInner] List of function dependencies

Example

from revengai.models.v2_function_info import V2FunctionInfo

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

# convert the object into a dict
v2_function_info_dict = v2_function_info_instance.to_dict()
# create an instance of V2FunctionInfo from a dict
v2_function_info_from_dict = V2FunctionInfo.from_dict(v2_function_info_dict)

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