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

Name Type Description Notes
functions List[AnalysisStringFunction]
source str
value str

Example

from revengai.models.analysis_string_item import AnalysisStringItem

# TODO update the JSON string below
json = "{}"
# create an instance of AnalysisStringItem from a JSON string
analysis_string_item_instance = AnalysisStringItem.from_json(json)
# print the JSON string representation of the object
print(AnalysisStringItem.to_json())

# convert the object into a dict
analysis_string_item_dict = analysis_string_item_instance.to_dict()
# create an instance of AnalysisStringItem from a dict
analysis_string_item_from_dict = AnalysisStringItem.from_dict(analysis_string_item_dict)

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