| Name | Type | Description | Notes |
|---|---|---|---|
| functions | List[AppApiRestV2FunctionsTypesFunction] | The functions associated with the analysis |
fromrevengai.models.analysis_functionsimportAnalysisFunctions# TODO update the JSON string belowjson="{}"# create an instance of AnalysisFunctions from a JSON stringanalysis_functions_instance=AnalysisFunctions.from_json(json)
# print the JSON string representation of the objectprint(AnalysisFunctions.to_json())
# convert the object into a dictanalysis_functions_dict=analysis_functions_instance.to_dict()
# create an instance of AnalysisFunctions from a dictanalysis_functions_from_dict=AnalysisFunctions.from_dict(analysis_functions_dict)