Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

File metadata and controls

31 lines (22 loc) · 1.16 KB

AnalysisBulkAddTagsResponseItem

Properties

Name Type Description Notes
analysis_id int
message str
error str [optional]

Example

from revengai.models.analysis_bulk_add_tags_response_item import AnalysisBulkAddTagsResponseItem

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

# convert the object into a dict
analysis_bulk_add_tags_response_item_dict = analysis_bulk_add_tags_response_item_instance.to_dict()
# create an instance of AnalysisBulkAddTagsResponseItem from a dict
analysis_bulk_add_tags_response_item_from_dict = AnalysisBulkAddTagsResponseItem.from_dict(analysis_bulk_add_tags_response_item_dict)

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