Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

File metadata and controls

32 lines (23 loc) · 1.12 KB

GeoNode

A geographic node type with a physical position (latitude/longitude). Represents a customer location, delivery point, or field-service site that a resource must physically travel to.

Properties

Name Type Description Notes
position Position
pillar_node PillarType [optional]
type_name str The typeName of the object [default to 'Geo']

Example

from touroptimizer_py_client.models.geo_node import GeoNode

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

# convert the object into a dict
geo_node_dict = geo_node_instance.to_dict()
# create an instance of GeoNode from a dict
geo_node_from_dict = GeoNode.from_dict(geo_node_dict)

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