Skip to content

Latest commit

History

History
29 lines (20 loc) · 1.01 KB

File metadata and controls

29 lines (20 loc) · 1.01 KB

AnalysisFunctions

Properties

NameTypeDescriptionNotes
functionsList[AppApiRestV2FunctionsTypesFunction]The functions associated with the analysis

Example

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)

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