| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | [optional] | |
| geometry | BiteGeoJsonModelGeometry | [optional] | |
| properties | ObservationGeoJsonModelProperties | [optional] |
from mosquito_alert.models.observation_geo_json_model import ObservationGeoJsonModel
# TODO update the JSON string below
json = "{}"
# create an instance of ObservationGeoJsonModel from a JSON string
observation_geo_json_model_instance = ObservationGeoJsonModel.from_json(json)
# print the JSON string representation of the object
print(ObservationGeoJsonModel.to_json())
# convert the object into a dict
observation_geo_json_model_dict = observation_geo_json_model_instance.to_dict()
# create an instance of ObservationGeoJsonModel from a dict
observation_geo_json_model_from_dict = ObservationGeoJsonModel.from_dict(observation_geo_json_model_dict)