ExpandLeaf is the leaf node of an Expand tree and can be either a set of Subjects or a set of Values.
Name | Type | Description | Notes |
---|---|---|---|
subjects | Subjects | [optional] | |
values | Values | [optional] | |
value | Any | [optional] |
from permify_async.models.expand_leaf import ExpandLeaf
# TODO update the JSON string below
json = "{}"
# create an instance of ExpandLeaf from a JSON string
expand_leaf_instance = ExpandLeaf.from_json(json)
# print the JSON string representation of the object
print(ExpandLeaf.to_json())
# convert the object into a dict
expand_leaf_dict = expand_leaf_instance.to_dict()
# create an instance of ExpandLeaf from a dict
expand_leaf_from_dict = ExpandLeaf.from_dict(expand_leaf_dict)