Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

HotelInfoLocation

Search location as a country code/name, DataForSEO location code, full location name, or latitude,longitude,radius coordinate string. Defaults to us.

Properties

Name Type Description Notes

Example

from unifapi.models.hotel_info_location import HotelInfoLocation

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

# convert the object into a dict
hotel_info_location_dict = hotel_info_location_instance.to_dict()
# create an instance of HotelInfoLocation from a dict
hotel_info_location_from_dict = HotelInfoLocation.from_dict(hotel_info_location_dict)

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