Object containing the query for percolating documents against stored queries in a percolate index
Name | Type | Description | Notes |
---|---|---|---|
query | PercolateRequestQuery |
from manticoresearch.models.percolate_request import PercolateRequest
# 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)