Skip to content

Latest commit

 

History

History
executable file
·
28 lines (19 loc) · 809 Bytes

MatchAll.md

File metadata and controls

executable file
·
28 lines (19 loc) · 809 Bytes

MatchAll

Filter helper object defining the 'match all'' condition

Properties

Name Type Description Notes
all str

Example

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)

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