Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

HierarchyNodeParentItem.md

File metadata and controls

31 lines (22 loc) · 1.08 KB

HierarchyNodeParentItem

hierarchy node parent item

Properties

Name Type Description Notes
node_id NodeId
name str The name of the node.

Example

from onelens_backend_client.models.hierarchy_node_parent_item import HierarchyNodeParentItem

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

# convert the object into a dict
hierarchy_node_parent_item_dict = hierarchy_node_parent_item_instance.to_dict()
# create an instance of HierarchyNodeParentItem from a dict
hierarchy_node_parent_item_form_dict = hierarchy_node_parent_item.from_dict(hierarchy_node_parent_item_dict)

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