Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 894 Bytes

GeoJSONPoint.md

File metadata and controls

30 lines (21 loc) · 894 Bytes

GeoJSONPoint

Properties

Name Type Description Notes
type str
coordinates List[float]

Example

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)

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