Child represents a node in the permission tree.
| Name | Type | Description | Notes |
|---|---|---|---|
| leaf | Leaf | [optional] | |
| rewrite | Rewrite | [optional] |
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_form_dict = child.from_dict(child_dict)