API response schema for paginated functions list
| Name | Type | Description | Notes |
|---|---|---|---|
| functions | List[FunctionListItem] | The functions associated with the analysis |
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)