Skip to content

Latest commit

 

History

History
executable file
·
27 lines (18 loc) · 981 Bytes

PercolateRequestQuery.md

File metadata and controls

executable file
·
27 lines (18 loc) · 981 Bytes

PercolateRequestQuery

Properties

Name Type Description Notes
percolate object Object representing the document to percolate

Example

from manticoresearch.models.percolate_request_query import PercolateRequestQuery

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

# convert the object into a dict
percolate_request_query_dict = percolate_request_query_instance.to_dict()
# create an instance of PercolateRequestQuery from a dict
percolate_request_query_from_dict = PercolateRequestQuery.from_dict(percolate_request_query_dict)

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