Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

File metadata and controls

31 lines (22 loc) · 1.21 KB

BulkUpdateDocumentsResponse

Response model for bulk document update operation.

Properties

Name Type Description Notes
updated_count int Number of documents that were updated.
message str [optional] [default to 'Documents updated successfully']

Example

from mixpeek.models.bulk_update_documents_response import BulkUpdateDocumentsResponse

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

# convert the object into a dict
bulk_update_documents_response_dict = bulk_update_documents_response_instance.to_dict()
# create an instance of BulkUpdateDocumentsResponse from a dict
bulk_update_documents_response_from_dict = BulkUpdateDocumentsResponse.from_dict(bulk_update_documents_response_dict)

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