A hotel location represents a hotel property that a traveler stays in during their trip.
| name | data type | constraints | description |
|---|---|---|---|
| address1 | string | max size: 255, min size: 0 | The first line of the address. |
| address2 | string | max size: 255, min size: 0 | The second line of the address |
| phone1 | string | max size: 16, min size: 0 | The phone number of the hotel. |
| phone2 | string | max size: 16, min size: 0 | The second phone number of the hotel. |
| fax | string | max size: 16, min size: 0 | The fax number of the hotel. |
| zip | string | max size: 45, min size: 0 | The zip code of the hotel. |
| city | City | The city, or nearest airport to the hotel. | |
| vendor | HotelVendor | The vendor chain that owns the hotel. | |
| latitude | number | The latitude of the hotel. | |
| sertifiCode | string | ||
| googlePlaceId | string | ||
| longitude | number | The longitude of the hotel. | |
| propertyName | string | max size: 100, min size: 0 | The local name of the property. |
| propertyCodes | array of HotelLocationCode | ||
Properties inherited from BaseHibernateEntity |
|||
| id | number | The unique internal ID of the object. | |
| version | number | For internal use only. This is the serialization recorder for optimistic locking of several objects between sessions. | |
Properties inherited from BaseEntity |
|||
| violations | array of SimpleViolation | A list of constraint violations, if any, that this object has. | |
Example
{
"address1" : "...",
"address2" : "...",
"phone1" : "...",
"phone2" : "...",
"fax" : "...",
"zip" : "...",
"city" : {
"code" : "...",
"countryCode" : "...",
"latitude" : 12345.0,
"longitude" : 12345.0,
"name" : "...",
"stateOrCountry" : "...",
"airportName" : "...",
"region" : {
"name" : "...",
"code" : "...",
"country" : { },
"position" : 12345,
"id" : 12345,
"version" : 12345,
"violations" : [ { }, { } ]
},
"timeZone" : {
"name" : "...",
"offset" : 12345.0,
"daylightSavingsOffset" : 12345.0,
"id" : 12345,
"version" : 12345,
"violations" : [ { }, { } ]
},
"retentionOnly" : true,
"position" : 12345,
"unique" : true,
"alias" : true,
"id" : 12345,
"version" : 12345,
"violations" : [ {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
}, {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
} ]
},
"vendor" : {
"longCode" : "...",
"commissionRate" : 12345.0,
"family" : {
"name" : "...",
"code" : "...",
"id" : 12345,
"version" : 12345,
"violations" : [ { }, { } ]
},
"position" : 12345,
"code" : "...",
"name" : "...",
"id" : 12345,
"version" : 12345,
"violations" : [ {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
}, {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
} ]
},
"latitude" : 12345.0,
"sertifiCode" : "...",
"googlePlaceId" : "...",
"longitude" : 12345.0,
"propertyName" : "...",
"propertyCodes" : [ {
"gds" : {
"code" : "...",
"name" : "...",
"enabled" : true,
"id" : 12345,
"version" : 12345,
"violations" : [ { }, { } ]
},
"code" : "...",
"id" : 12345,
"version" : 12345,
"violations" : [ {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
}, {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
} ]
}, {
"gds" : {
"code" : "...",
"name" : "...",
"enabled" : true,
"id" : 12345,
"version" : 12345,
"violations" : [ { }, { } ]
},
"code" : "...",
"id" : 12345,
"version" : 12345,
"violations" : [ {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
}, {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
} ]
} ],
"id" : 12345,
"version" : 12345,
"violations" : [ {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
}, {
"propertyName" : "...",
"failureMessage" : "...",
"stackTrace" : "..."
} ]
}