| Name | Type | Description | Notes |
|---|---|---|---|
| func_types | V2FunctionType | [optional] | |
| func_deps | List[V2FunctionInfoFuncDepsInner] | List of function dependencies |
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)