GPS coordinates of the hotel when present.
| Name | Type | Description | Notes |
|---|---|---|---|
| latitude | float | Latitude of the hotel on Google Maps. | [optional] |
| longitude | float | Longitude of the hotel on Google Maps. | [optional] |
from unifapi.models.hotel_search_geo import HotelSearchGeo
# TODO update the JSON string below
json = "{}"
# create an instance of HotelSearchGeo from a JSON string
hotel_search_geo_instance = HotelSearchGeo.from_json(json)
# print the JSON string representation of the object
print(HotelSearchGeo.to_json())
# convert the object into a dict
hotel_search_geo_dict = hotel_search_geo_instance.to_dict()
# create an instance of HotelSearchGeo from a dict
hotel_search_geo_from_dict = HotelSearchGeo.from_dict(hotel_search_geo_dict)