Filter helper object defining the 'match all'' condition
Name | Type | Description | Notes |
---|---|---|---|
all | str |
from manticoresearch.models.match_all import MatchAll
# 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)