Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

ExpandTreeNode.md

File metadata and controls

31 lines (22 loc) · 1.08 KB

ExpandTreeNode

ExpandTreeNode represents a node in an expansion tree with a specific operation and its children.

Properties

Name Type Description Notes
operation ExpandTreeNodeOperation [optional]
children List[V1Expand] [optional]

Example

from permify.models.expand_tree_node import ExpandTreeNode

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

# convert the object into a dict
expand_tree_node_dict = expand_tree_node_instance.to_dict()
# create an instance of ExpandTreeNode from a dict
expand_tree_node_from_dict = ExpandTreeNode.from_dict(expand_tree_node_dict)

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