Location
Location describes the geographical details of the hotel.
addressaddress (string)
Street address of the hotel.
citycity (string)
City where the hotel is located.
zipCodezipCode (string)
Postal or ZIP code.
countrycountry (string)
ISO 3166 alpha-2 country code.
statestate (string)
State or province name.
coordinates object
Geographical coordinates.
longitudenumber<float>
Longitude in decimal degrees.
latitudenumber<float>
Latitude in decimal degrees.
closestDestination object[]
Destinations located near the hotel.
Array [
codecode (string)
Destination code.
namename (string)
Destination name.
]
airports object[]
Airports located near the hotel.
Array [
codecode (string)
Airport code, typically IATA.
]
Location
{
"address": "string",
"city": "string",
"zipCode": "string",
"country": "string",
"state": "string",
"coordinates": {
"longitude": 0,
"latitude": 0
},
"closestDestination": [
{
"code": "string",
"name": "string"
}
],
"airports": [
{
"code": "string"
}
]
}