Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

File metadata and controls

32 lines (23 loc) · 1.22 KB

BatchDocumentDeleteResult

Result of a single document deletion in a batch operation.

Properties

Name Type Description Notes
document_id str Document ID that was deleted
success bool Whether the deletion succeeded
error str Error message if deletion failed [optional]

Example

from mixpeek.models.batch_document_delete_result import BatchDocumentDeleteResult

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

# convert the object into a dict
batch_document_delete_result_dict = batch_document_delete_result_instance.to_dict()
# create an instance of BatchDocumentDeleteResult from a dict
batch_document_delete_result_from_dict = BatchDocumentDeleteResult.from_dict(batch_document_delete_result_dict)

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