Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

HotelSearchGeo

GPS coordinates of the hotel when present.

Properties

Name Type Description Notes
latitude float Latitude of the hotel on Google Maps. [optional]
longitude float Longitude of the hotel on Google Maps. [optional]

Example

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)

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