TupleSet represents a set of tuples associated with a specific relation.
Name | Type | Description | Notes |
---|---|---|---|
relation | str | [optional] |
from permify.models.tuple_set import TupleSet
# TODO update the JSON string below
json = "{}"
# create an instance of TupleSet from a JSON string
tuple_set_instance = TupleSet.from_json(json)
# print the JSON string representation of the object
print(TupleSet.to_json())
# convert the object into a dict
tuple_set_dict = tuple_set_instance.to_dict()
# create an instance of TupleSet from a dict
tuple_set_from_dict = TupleSet.from_dict(tuple_set_dict)