Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 903 Bytes

LocationPoint.md

File metadata and controls

30 lines (21 loc) · 903 Bytes

LocationPoint

Properties

Name Type Description Notes
latitude float
longitude float

Example

from mosquito_alert.models.location_point import LocationPoint

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

# convert the object into a dict
location_point_dict = location_point_instance.to_dict()
# create an instance of LocationPoint from a dict
location_point_from_dict = LocationPoint.from_dict(location_point_dict)

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