PercolateRequest

October 23, 2025 ยท View on GitHub

Object containing the query for percolating documents against stored queries in a percolate table

Properties

NameTypeDescriptionNotes
queryPercolateRequestQuery

Example

from manticoresearch.models.percolate_request import PercolateRequest

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

# convert the object into a dict
percolate_request_dict = percolate_request_instance.to_dict()
# create an instance of PercolateRequest from a dict
percolate_request_from_dict = PercolateRequest.from_dict(percolate_request_dict)

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