SuccessResponse

October 23, 2025 ยท View on GitHub

Response object indicating the success of an operation, such as inserting or updating a document

Properties

NameTypeDescriptionNotes
tablestrName of the document table[optional]
idintID of the document affected by the request operation[optional]
createdboolIndicates whether the document was created as a result of the operation[optional]
resultstrResult of the operation, typically 'created', 'updated', or 'deleted'[optional]
foundboolIndicates whether the document was found in the table[optional]
statusintHTTP status code representing the result of the operation[optional]

Example

from manticoresearch.models.success_response import SuccessResponse

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

# convert the object into a dict
success_response_dict = success_response_instance.to_dict()
# create an instance of SuccessResponse from a dict
success_response_from_dict = SuccessResponse.from_dict(success_response_dict)

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