The node at the end of this edge
Name | Type | Description | Notes |
---|---|---|---|
intersecting_edges | List[IntersectingEdge] | A set of edges intersecting this node. | [optional] |
elapsed_time | float | The elapsed time along the path to arrive at this node. | [optional] |
admin_index | int | The index into the `admins` list in which this node lies. | [optional] |
type | NodeType | [optional] | |
fork | bool | True if this node is a fork. | [optional] |
time_zone | str | The canonical TZDB identifier for the node's time zone. | [optional] |
from stadiamaps.models.end_node import EndNode
# TODO update the JSON string below
json = "{}"
# create an instance of EndNode from a JSON string
end_node_instance = EndNode.from_json(json)
# print the JSON string representation of the object
print(EndNode.to_json())
# convert the object into a dict
end_node_dict = end_node_instance.to_dict()
# create an instance of EndNode from a dict
end_node_from_dict = EndNode.from_dict(end_node_dict)