Leaf represents a leaf node in the permission tree.
Name | Type | Description | Notes |
---|---|---|---|
computed_user_set | ComputedUserSet | [optional] | |
tuple_to_user_set | TupleToUserSet | [optional] | |
computed_attribute | ComputedAttribute | [optional] | |
call | V1Call | [optional] |
from permify.models.leaf import Leaf
# TODO update the JSON string below
json = "{}"
# create an instance of Leaf from a JSON string
leaf_instance = Leaf.from_json(json)
# print the JSON string representation of the object
print(Leaf.to_json())
# convert the object into a dict
leaf_dict = leaf_instance.to_dict()
# create an instance of Leaf from a dict
leaf_from_dict = Leaf.from_dict(leaf_dict)