Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.04 KB

Leaf.md

File metadata and controls

33 lines (24 loc) · 1.04 KB

Leaf

Leaf represents a leaf node in the permission tree.

Properties

Name Type Description Notes
computed_user_set ComputedUserSet [optional]
tuple_to_user_set TupleToUserSet [optional]
computed_attribute ComputedAttribute [optional]
call V1Call [optional]

Example

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)

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