Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.19 KB

File metadata and controls

30 lines (21 loc) · 1.19 KB

SameVisitorNodeRelation

A relation requiring that the master node and related nodes are visited by the same resource. Ensures a single resource handles all coupled nodes.

Properties

Name Type Description Notes
type_name str The typeName of the object [default to 'SameVisitor']

Example

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)

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