Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 932 Bytes

GeoJsonGeometry.md

File metadata and controls

30 lines (21 loc) · 932 Bytes

GeoJsonGeometry

Properties

Name Type Description Notes
type str
coordinates object

Example

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]