Name | Type | Description | Notes |
---|---|---|---|
type | str | ||
geometry | GeoJsonGeometry | ||
properties | object |
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)