Success response returned after updating one or more documents
Name | Type | Description | Notes |
---|---|---|---|
index | str | Name of the document index | [optional] |
updated | int | Number of documents updated | [optional] |
id | int | Document ID | [optional] |
result | str | Result of the update operation, typically 'updated' | [optional] |
from manticoresearch.models.update_response import UpdateResponse
# create an instance of UpdateResponse from a JSON string
update_response_instance = UpdateResponse.from_json(json)
# print the JSON string representation of the object
print(UpdateResponse.to_json())
# convert the object into a dict
update_response_dict = update_response_instance.to_dict()
# create an instance of UpdateResponse from a dict
update_response_from_dict = UpdateResponse.from_dict(update_response_dict)