Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.08 KB

File metadata and controls

29 lines (20 loc) · 1.08 KB

AnalysisUpdateTagsResponse

Properties

Name Type Description Notes
tags List[TagResponse] The analysis tags after updating

Example

from revengai.models.analysis_update_tags_response import AnalysisUpdateTagsResponse

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

# convert the object into a dict
analysis_update_tags_response_dict = analysis_update_tags_response_instance.to_dict()
# create an instance of AnalysisUpdateTagsResponse from a dict
analysis_update_tags_response_from_dict = AnalysisUpdateTagsResponse.from_dict(analysis_update_tags_response_dict)

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