Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

AnalysisStringItem

Properties

NameTypeDescriptionNotes
functionsList[AnalysisStringFunction]
sourcestr
valuestr

Example

fromrevengai.models.analysis_string_itemimportAnalysisStringItem# TODO update the JSON string belowjson="{}"# create an instance of AnalysisStringItem from a JSON stringanalysis_string_item_instance=AnalysisStringItem.from_json(json)
# print the JSON string representation of the objectprint(AnalysisStringItem.to_json())
# convert the object into a dictanalysis_string_item_dict=analysis_string_item_instance.to_dict()
# create an instance of AnalysisStringItem from a dictanalysis_string_item_from_dict=AnalysisStringItem.from_dict(analysis_string_item_dict)

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