Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 981 Bytes

GeoJsonFeature.md

File metadata and controls

31 lines (22 loc) · 981 Bytes

GeoJsonFeature

Properties

Name Type Description Notes
type str
geometry GeoJsonGeometry
properties object

Example

from openapi_client.models.geo_json_feature import GeoJsonFeature

# TODO update the JSON string below
json = "{}"
# create an instance of GeoJsonFeature from a JSON string
geo_json_feature_instance = GeoJsonFeature.from_json(json)
# print the JSON string representation of the object
print(GeoJsonFeature.to_json())

# convert the object into a dict
geo_json_feature_dict = geo_json_feature_instance.to_dict()
# create an instance of GeoJsonFeature from a dict
geo_json_feature_from_dict = GeoJsonFeature.from_dict(geo_json_feature_dict)

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