A relation that couples two or more nodes across time or resource assignment. Subtypes include time window relations (enforcing relative visit ordering with optional time gaps), same-visitor relations (requiring the same resource visits both nodes), different-visitor relations (requiring distinct resources), and multi-time-window relations.
| Name | Type | Description | Notes |
|---|---|---|---|
| type_name | str |
from touroptimizer_py_client.models.node_relation_type import NodeRelationType
# TODO update the JSON string below
json = "{}"
# create an instance of NodeRelationType from a JSON string
node_relation_type_instance = NodeRelationType.from_json(json)
# print the JSON string representation of the object
print(NodeRelationType.to_json())
# convert the object into a dict
node_relation_type_dict = node_relation_type_instance.to_dict()
# create an instance of NodeRelationType from a dict
node_relation_type_from_dict = NodeRelationType.from_dict(node_relation_type_dict)