Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 856 Bytes

MatchCondition.md

File metadata and controls

28 lines (19 loc) · 856 Bytes

MatchCondition

Properties

Name Type Description Notes

Example

from trieve_py_client.models.match_condition import MatchCondition

# TODO update the JSON string below
json = "{}"
# create an instance of MatchCondition from a JSON string
match_condition_instance = MatchCondition.from_json(json)
# print the JSON string representation of the object
print(MatchCondition.to_json())

# convert the object into a dict
match_condition_dict = match_condition_instance.to_dict()
# create an instance of MatchCondition from a dict
match_condition_form_dict = match_condition.from_dict(match_condition_dict)

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