Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

UpdateResponse.md

File metadata and controls

31 lines (22 loc) · 1.11 KB

UpdateResponse

Success response returned after updating one or more documents

Properties

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]

Example

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)

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