Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

BulkResponse.md

File metadata and controls

30 lines (21 loc) · 1.03 KB

BulkResponse

Success response for bulk search requests

Properties

Name Type Description Notes
items List[object] List of results [optional]
errors bool Errors occurred during the bulk operation [optional]
error str Error message describing an error if such occurred [optional]

Example

from manticoresearch.models.bulk_response import BulkResponse

# create an instance of BulkResponse from a JSON string
bulk_response_instance = BulkResponse.from_json(json)
# print the JSON string representation of the object
print(BulkResponse.to_json())

# convert the object into a dict
bulk_response_dict = bulk_response_instance.to_dict()
# create an instance of BulkResponse from a dict
bulk_response_from_dict = BulkResponse.from_dict(bulk_response_dict)

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