ExpandTreeNode represents a node in an expansion tree with a specific operation and its children.
| Name | Type | Description | Notes |
|---|---|---|---|
| operation | ExpandTreeNodeOperation | [optional] | |
| children | List[V1Expand] | [optional] |
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_form_dict = expand_tree_node.from_dict(expand_tree_node_dict)