The id of the node.
Name | Type | Description | Notes |
---|
from onelens_backend_client.models.node_id import NodeId
# TODO update the JSON string below
json = "{}"
# create an instance of NodeId from a JSON string
node_id_instance = NodeId.from_json(json)
# print the JSON string representation of the object
print(NodeId.to_json())
# convert the object into a dict
node_id_dict = node_id_instance.to_dict()
# create an instance of NodeId from a dict
node_id_form_dict = node_id.from_dict(node_id_dict)