The Nodetype that can contain different Nodes
| Name | Type | Description | Notes |
|---|---|---|---|
| type_name | str |
from touroptimizer_py_client.models.node_type import NodeType
# TODO update the JSON string below
json = "{}"
# create an instance of NodeType from a JSON string
node_type_instance = NodeType.from_json(json)
# print the JSON string representation of the object
print(NodeType.to_json())
# convert the object into a dict
node_type_dict = node_type_instance.to_dict()
# create an instance of NodeType from a dict
node_type_from_dict = NodeType.from_dict(node_type_dict)