Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1002 Bytes

PercolateRequest.md

File metadata and controls

28 lines (19 loc) · 1002 Bytes

PercolateRequest

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

Properties

Name Type Description Notes
query PercolateRequestQuery

Example

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)

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