Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

File metadata and controls

29 lines (20 loc) · 1.11 KB

AnalysisBulkAddTagsResponse

Properties

Name Type Description Notes
results List[AnalysisBulkAddTagsResponseItem]

Example

from revengai.models.analysis_bulk_add_tags_response import AnalysisBulkAddTagsResponse

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

# convert the object into a dict
analysis_bulk_add_tags_response_dict = analysis_bulk_add_tags_response_instance.to_dict()
# create an instance of AnalysisBulkAddTagsResponse from a dict
analysis_bulk_add_tags_response_from_dict = AnalysisBulkAddTagsResponse.from_dict(analysis_bulk_add_tags_response_dict)

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