Name |
Type |
Description |
Notes |
type |
str |
|
|
coordinates |
object |
|
|
from openapi_client.models.geo_json_geometry import GeoJsonGeometry
# TODO update the JSON string below
json = "{}"
# create an instance of GeoJsonGeometry from a JSON string
geo_json_geometry_instance = GeoJsonGeometry.from_json(json)
# print the JSON string representation of the object
print(GeoJsonGeometry.to_json())
# convert the object into a dict
geo_json_geometry_dict = geo_json_geometry_instance.to_dict()
# create an instance of GeoJsonGeometry from a dict
geo_json_geometry_from_dict = GeoJsonGeometry.from_dict(geo_json_geometry_dict)
[Back to Model list] [Back to API list] [Back to README]