| Name | Type | Description | Notes |
|---|---|---|---|
| latitude | float | ||
| longitude | float |
from mosquito_alert.models.point_request import PointRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PointRequest from a JSON string
point_request_instance = PointRequest.from_json(json)
# print the JSON string representation of the object
print(PointRequest.to_json())
# convert the object into a dict
point_request_dict = point_request_instance.to_dict()
# create an instance of PointRequest from a dict
point_request_from_dict = PointRequest.from_dict(point_request_dict)