| Name | Type | Description | Notes |
|---|---|---|---|
| functions | List[AnalysisStringFunction] | ||
| source | str | ||
| value | str |
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)