Search location as a country code/name, DataForSEO location code, full location name, or latitude,longitude,radius coordinate string. Defaults to us.
| Name | Type | Description | Notes |
|---|
from unifapi.models.hotel_search_location import HotelSearchLocation
# TODO update the JSON string below
json = "{}"
# create an instance of HotelSearchLocation from a JSON string
hotel_search_location_instance = HotelSearchLocation.from_json(json)
# print the JSON string representation of the object
print(HotelSearchLocation.to_json())
# convert the object into a dict
hotel_search_location_dict = hotel_search_location_instance.to_dict()
# create an instance of HotelSearchLocation from a dict
hotel_search_location_from_dict = HotelSearchLocation.from_dict(hotel_search_location_dict)