A relation requiring that the master node and related nodes are visited by the same resource. Ensures a single resource handles all coupled nodes.
| Name | Type | Description | Notes |
|---|---|---|---|
| type_name | str | The typeName of the object | [default to 'SameVisitor'] |
from touroptimizer_py_client.models.same_visitor_node_relation import SameVisitorNodeRelation
# TODO update the JSON string below
json = "{}"
# create an instance of SameVisitorNodeRelation from a JSON string
same_visitor_node_relation_instance = SameVisitorNodeRelation.from_json(json)
# print the JSON string representation of the object
print(SameVisitorNodeRelation.to_json())
# convert the object into a dict
same_visitor_node_relation_dict = same_visitor_node_relation_instance.to_dict()
# create an instance of SameVisitorNodeRelation from a dict
same_visitor_node_relation_from_dict = SameVisitorNodeRelation.from_dict(same_visitor_node_relation_dict)