TupleFilter is used to filter tuples based on the entity, relation and the subject.
| Name | Type | Description | Notes |
|---|---|---|---|
| entity | EntityFilter | [optional] | |
| relation | str | [optional] | |
| subject | SubjectFilter | [optional] |
frompermify_async.models.tuple_filterimportTupleFilter# TODO update the JSON string belowjson="{}"# create an instance of TupleFilter from a JSON stringtuple_filter_instance=TupleFilter.from_json(json)
# print the JSON string representation of the objectprint(TupleFilter.to_json())
# convert the object into a dicttuple_filter_dict=tuple_filter_instance.to_dict()
# create an instance of TupleFilter from a dicttuple_filter_from_dict=TupleFilter.from_dict(tuple_filter_dict)