Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.22 KB

File metadata and controls

30 lines (21 loc) · 1.22 KB

ListAnalysisFunctionsOutputBody

Properties

Name Type Description Notes
functions List[AnalysisFunctionEntry]
total_count int Total functions in the analysis, ignoring pagination.

Example

from revengai.models.list_analysis_functions_output_body import ListAnalysisFunctionsOutputBody

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

# convert the object into a dict
list_analysis_functions_output_body_dict = list_analysis_functions_output_body_instance.to_dict()
# create an instance of ListAnalysisFunctionsOutputBody from a dict
list_analysis_functions_output_body_from_dict = ListAnalysisFunctionsOutputBody.from_dict(list_analysis_functions_output_body_dict)

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