Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 876 Bytes

Child.md

File metadata and controls

31 lines (22 loc) · 876 Bytes

Child

Child represents a node in the permission tree.

Properties

Name Type Description Notes
leaf Leaf [optional]
rewrite Rewrite [optional]

Example

from permify.models.child import Child

# TODO update the JSON string below
json = "{}"
# create an instance of Child from a JSON string
child_instance = Child.from_json(json)
# print the JSON string representation of the object
print(Child.to_json())

# convert the object into a dict
child_dict = child_instance.to_dict()
# create an instance of Child from a dict
child_from_dict = Child.from_dict(child_dict)

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