Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 879 Bytes

File metadata and controls

29 lines (20 loc) · 879 Bytes

AnalysisTags

Properties

Name Type Description Notes
analysis_tags List[TagItem]

Example

from revengai.models.analysis_tags import AnalysisTags

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

# convert the object into a dict
analysis_tags_dict = analysis_tags_instance.to_dict()
# create an instance of AnalysisTags from a dict
analysis_tags_from_dict = AnalysisTags.from_dict(analysis_tags_dict)

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