Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.04 KB

ExpandLeaf.md

File metadata and controls

32 lines (23 loc) · 1.04 KB

ExpandLeaf

ExpandLeaf is the leaf node of an Expand tree and can be either a set of Subjects or a set of Values.

Properties

Name Type Description Notes
subjects Subjects [optional]
values Values [optional]
value Any [optional]

Example

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)

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