ReplaceDocumentRequest

October 23, 2025 ยท View on GitHub

Object containing the document data for replacing an existing document in a table.

Properties

NameTypeDescriptionNotes
docobjectObject containing the new document data to replace the existing one.

Example

from manticoresearch.models.replace_document_request import ReplaceDocumentRequest

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

# convert the object into a dict
replace_document_request_dict = replace_document_request_instance.to_dict()
# create an instance of ReplaceDocumentRequest from a dict
replace_document_request_from_dict = ReplaceDocumentRequest.from_dict(replace_document_request_dict)

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