Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 967 Bytes

File metadata and controls

31 lines (22 loc) · 967 Bytes

GeoNode

Properties

Name Type Description Notes
position Position
pillar_node GeoPillarNode [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_form_dict = geo_node.from_dict(geo_node_dict)

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