MatchAll
October 23, 2025 ยท View on GitHub
Filter helper object defining the 'match all'' condition
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| all | str |
Example
from manticoresearch.models.match_all import MatchAll
# TODO update the JSON string below
json = "{}"
# create an instance of MatchAll from a JSON string
match_all_instance = MatchAll.from_json(json)
# print the JSON string representation of the object
print(MatchAll.to_json())
# convert the object into a dict
match_all_dict = match_all_instance.to_dict()
# create an instance of MatchAll from a dict
match_all_from_dict = MatchAll.from_dict(match_all_dict)