Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 890 Bytes

File metadata and controls

30 lines (21 loc) · 890 Bytes

PointRequest

Properties

Name Type Description Notes
latitude float
longitude float

Example

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)

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