TupleSet represents a set of tuples associated with a specific relation.
| Name | Type | Description | Notes |
|---|---|---|---|
| relation | str | [optional] |
frompermify_async.models.tuple_setimportTupleSet# TODO update the JSON string belowjson="{}"# create an instance of TupleSet from a JSON stringtuple_set_instance=TupleSet.from_json(json)
# print the JSON string representation of the objectprint(TupleSet.to_json())
# convert the object into a dicttuple_set_dict=tuple_set_instance.to_dict()
# create an instance of TupleSet from a dicttuple_set_from_dict=TupleSet.from_dict(tuple_set_dict)