Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 778 Bytes

NodeId.md

File metadata and controls

29 lines (20 loc) · 778 Bytes

NodeId

The id of the node.

Properties

Name Type Description Notes

Example

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)

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