Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

AnalysisFunctionsList

API response schema for paginated functions list

Properties

Name Type Description Notes
functions List[FunctionListItem] The functions associated with the analysis

Example

from revengai.models.analysis_functions_list import AnalysisFunctionsList

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

# convert the object into a dict
analysis_functions_list_dict = analysis_functions_list_instance.to_dict()
# create an instance of AnalysisFunctionsList from a dict
analysis_functions_list_from_dict = AnalysisFunctionsList.from_dict(analysis_functions_list_dict)

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