Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.32 KB

EndNode.md

File metadata and controls

35 lines (26 loc) · 1.32 KB

EndNode

The node at the end of this edge

Properties

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]

Example

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)

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