Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.34 KB

File metadata and controls

32 lines (23 loc) · 1.34 KB

EventNode

A non-geographic node type representing a time-based task without a physical location (e.g. a phone call, virtual meeting, or administrative task). The optimizer schedules it based on time constraints only, with zero travel time and distance.

Properties

Name Type Description Notes
pillar_node PillarType [optional]
type_name str The typeName of the object [default to 'Event']
is_partial_exchange_idle_for_driving_time bool An EventNode is allowed to be visited BEWTWEEN two Nodes and does not need to be positioned at a node. [optional] [default to True]

Example

from touroptimizer_py_client.models.event_node import EventNode

# TODO update the JSON string below
json = "{}"
# create an instance of EventNode from a JSON string
event_node_instance = EventNode.from_json(json)
# print the JSON string representation of the object
print(EventNode.to_json())

# convert the object into a dict
event_node_dict = event_node_instance.to_dict()
# create an instance of EventNode from a dict
event_node_from_dict = EventNode.from_dict(event_node_dict)

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