Name | Type | Description | Notes |
---|---|---|---|
type | str | ||
coordinates | List[float] |
from stadiamaps.models.geo_json_point import GeoJSONPoint
# TODO update the JSON string below
json = "{}"
# create an instance of GeoJSONPoint from a JSON string
geo_json_point_instance = GeoJSONPoint.from_json(json)
# print the JSON string representation of the object
print(GeoJSONPoint.to_json())
# convert the object into a dict
geo_json_point_dict = geo_json_point_instance.to_dict()
# create an instance of GeoJSONPoint from a dict
geo_json_point_from_dict = GeoJSONPoint.from_dict(geo_json_point_dict)