Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.09 KB

File metadata and controls

30 lines (21 loc) · 1.09 KB

FunctionInfoOutput

Properties

Name Type Description Notes
func_types FunctionTypeOutput [optional]
func_deps List[FunctionInfoInputFuncDepsInner] List of function dependencies

Example

from revengai.models.function_info_output import FunctionInfoOutput

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

# convert the object into a dict
function_info_output_dict = function_info_output_instance.to_dict()
# create an instance of FunctionInfoOutput from a dict
function_info_output_from_dict = FunctionInfoOutput.from_dict(function_info_output_dict)

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