@tripian/core 9.3.3 → 9.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +7 -0
- package/Random.js +286 -0
- package/Random.js.map +1 -0
- package/api/API.d.ts +5 -0
- package/api/API.js +1663 -0
- package/api/API.js.map +1 -0
- package/api/CLAUDE.md +7 -0
- package/api/const/APICONST.js +233 -0
- package/api/const/APICONST.js.map +1 -0
- package/api/const/ApiConstModel.d.ts +2 -0
- package/api/const/ApiConstModel.js +3 -0
- package/api/const/ApiConstModel.js.map +1 -0
- package/api/const/CLAUDE.md +7 -0
- package/data/data.js +121 -0
- package/data/data.js.map +1 -0
- package/data/dataClear.js +50 -0
- package/data/dataClear.js.map +1 -0
- package/data/dataModel.js +3 -0
- package/data/dataModel.js.map +1 -0
- package/easy/TDate.js +49 -0
- package/easy/TDate.js.map +1 -0
- package/easy/easy.js +90 -0
- package/easy/easy.js.map +1 -0
- package/easy/handle/cache/Cached.js +274 -0
- package/easy/handle/cache/Cached.js.map +1 -0
- package/easy/handle/cache/cache.js +512 -0
- package/easy/handle/cache/cache.js.map +1 -0
- package/easy/handle/cache/cacheCommon.js +20 -0
- package/easy/handle/cache/cacheCommon.js.map +1 -0
- package/easy/handle/cache/cacheHelper.js +349 -0
- package/easy/handle/cache/cacheHelper.js.map +1 -0
- package/easy/handle/handle.js +61 -0
- package/easy/handle/handle.js.map +1 -0
- package/index.js +2 -2
- package/package.json +2 -2
- package/providers/bb/API.js +3605 -0
- package/providers/bb/API.js.map +1 -0
- package/providers/gyg/API.js +446 -0
- package/providers/gyg/API.js.map +1 -0
- package/providers/gyg/allCategories.js +2501 -0
- package/providers/gyg/allCategories.js.map +1 -0
- package/providers/gyg/catalogCategoryIds.js +22 -0
- package/providers/gyg/catalogCategoryIds.js.map +1 -0
- package/providers/gyg/handle.js +81 -0
- package/providers/gyg/handle.js.map +1 -0
- package/providers/gyg/mockTour.js +145 -0
- package/providers/gyg/mockTour.js.map +1 -0
- package/providers/radial-storage/API.js +25 -0
- package/providers/radial-storage/API.js.map +1 -0
- package/providers/rezdy/API.js +40 -0
- package/providers/rezdy/API.js.map +1 -0
- package/providers/toristy/API.js +69 -0
- package/providers/toristy/API.js.map +1 -0
- package/providers/travelify/API.js +72 -0
- package/providers/travelify/API.js.map +1 -0
- package/providers/viator/API.js +313 -0
- package/providers/viator/API.js.map +1 -0
- package/providers/viator/bookingQuestions.js +289 -0
- package/providers/viator/bookingQuestions.js.map +1 -0
- package/providers/viator/handle.js +48 -0
- package/providers/viator/handle.js.map +1 -0
- package/providers/victory/API.js +237 -0
- package/providers/victory/API.js.map +1 -0
- package/providers/videreo/API.js +29 -0
- package/providers/videreo/API.js.map +1 -0
- package/providers/yelp/API.js +151 -0
- package/providers/yelp/API.js.map +1 -0
- package/providers/yelp/data/business_test.js +37 -0
- package/providers/yelp/data/business_test.js.map +1 -0
- package/providers/yelp/data/hold_test.js +14 -0
- package/providers/yelp/data/hold_test.js.map +1 -0
- package/providers/yelp/data/openings_test.js +194 -0
- package/providers/yelp/data/openings_test.js.map +1 -0
- package/providers/yelp/data/reservation_test.js +9 -0
- package/providers/yelp/data/reservation_test.js.map +1 -0
- package/tcore.umd.js +2 -2
- package/tcore.umd.js.map +1 -1
- package/xhr/IXhrOptions.js +3 -0
- package/xhr/IXhrOptions.js.map +1 -0
- package/xhr/xhr.js +105 -0
- package/xhr/xhr.js.map +1 -0
- package/xhr/xhrFetch.js +214 -0
- package/xhr/xhrFetch.js.map +1 -0
|
@@ -0,0 +1,3605 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const axios_1 = __importDefault(require("axios"));
|
|
7
|
+
class API {
|
|
8
|
+
constructor(apiUrl, sandbox, proxyURL) {
|
|
9
|
+
this.getImgUrl = (subUrl) => {
|
|
10
|
+
if (subUrl && subUrl.startsWith('http'))
|
|
11
|
+
return subUrl;
|
|
12
|
+
return this.sandbox
|
|
13
|
+
? `https://testadmin.bookbarbados.com/gptour/thumbnails/999/${subUrl}`
|
|
14
|
+
: `https://admin.bookbarbados.com/gptour/thumbnails/999/${subUrl}`;
|
|
15
|
+
};
|
|
16
|
+
this.login = async (apiKey) => {
|
|
17
|
+
var _a;
|
|
18
|
+
const url = btoa(`${this.apiUrl}/authorization?apiKey=${apiKey}`);
|
|
19
|
+
try {
|
|
20
|
+
const authorizationResponse = await this.axios
|
|
21
|
+
.get(`${this.proxyURL}?url=${url}`)
|
|
22
|
+
.then((res) => res.data);
|
|
23
|
+
this.axios.defaults.headers.common.token = authorizationResponse.token;
|
|
24
|
+
}
|
|
25
|
+
catch (errorResponse) {
|
|
26
|
+
// eslint-disable-next-line no-console
|
|
27
|
+
console.error('booke-barbados-authorization', errorResponse);
|
|
28
|
+
throw (_a = errorResponse.message) !== null && _a !== void 0 ? _a : '';
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
this.searchActivities = async (startDate, endDate) => {
|
|
32
|
+
// searchActivities?countryId=3114&startDate=2022-05-10&endDate=2022-05-10&adults=2&privateActivity=true&sharedActivity=true&hikingActivity=true&fieldTripActivity=true&offerLimit=0&sortBy=PRICE_LOW_TO_HIGH
|
|
33
|
+
const url = btoa(`${this.apiUrl}/searchActivities?countryId=3114&startDate=${startDate}&endDate=${endDate}&adults=2&privateActivity=true&sharedActivity=true&hikingActivity=true&fieldTripActivity=true&offerLimit=0&sortBy=PRICE_LOW_TO_HIGH`);
|
|
34
|
+
return (this.axios
|
|
35
|
+
.get(`${this.proxyURL}?url=${url}`)
|
|
36
|
+
.then((searchActivitiesResponse) => {
|
|
37
|
+
const { data } = searchActivitiesResponse;
|
|
38
|
+
data.products.forEach((product) => {
|
|
39
|
+
// eslint-disable-next-line no-param-reassign
|
|
40
|
+
product.mainImage = this.getImgUrl(product.mainImage);
|
|
41
|
+
});
|
|
42
|
+
return data;
|
|
43
|
+
})
|
|
44
|
+
// eslint-disable-next-line no-console
|
|
45
|
+
.catch((errorResponse) => {
|
|
46
|
+
// eslint-disable-next-line no-console
|
|
47
|
+
console.error('booke-barbados-searchActivitiesResponse', errorResponse);
|
|
48
|
+
throw errorResponse.message;
|
|
49
|
+
}));
|
|
50
|
+
};
|
|
51
|
+
this.searchActivity = async (startDate, endDate, activityId) => {
|
|
52
|
+
const url = btoa(`${this.apiUrl}/searchActivities?countryId=3114&startDate=${startDate}&endDate=${endDate}&adults=2&activityId=${activityId}`);
|
|
53
|
+
return (this.axios
|
|
54
|
+
.get(`${this.proxyURL}?url=${url}`)
|
|
55
|
+
.then((searchActivitiesResponse) => {
|
|
56
|
+
const { data } = searchActivitiesResponse;
|
|
57
|
+
data.products.forEach((product) => {
|
|
58
|
+
// eslint-disable-next-line no-param-reassign
|
|
59
|
+
product.mainImage = this.getImgUrl(product.mainImage);
|
|
60
|
+
});
|
|
61
|
+
return data;
|
|
62
|
+
})
|
|
63
|
+
// eslint-disable-next-line no-console
|
|
64
|
+
.catch((errorResponse) => {
|
|
65
|
+
// eslint-disable-next-line no-console
|
|
66
|
+
console.error('book-barbados-searchActivityResponse', errorResponse);
|
|
67
|
+
throw errorResponse;
|
|
68
|
+
}));
|
|
69
|
+
};
|
|
70
|
+
/* activities = async (): Promise<Providers.Bb.Activity[]> => {
|
|
71
|
+
return this.axios
|
|
72
|
+
.get<Providers.Bb.Activity[]>('/activities')
|
|
73
|
+
.then((activitiesResponse) => activitiesResponse.data)
|
|
74
|
+
.catch((errorResponse) => {
|
|
75
|
+
// eslint-disable-next-line no-console
|
|
76
|
+
console.error('booke-barbados-activities', errorResponse);
|
|
77
|
+
throw errorResponse;
|
|
78
|
+
});
|
|
79
|
+
}; */
|
|
80
|
+
this.activityInfo = async (offerKey) => {
|
|
81
|
+
const url = btoa(`${this.apiUrl}/activityInfo?offerKey=${offerKey}`);
|
|
82
|
+
return this.axios
|
|
83
|
+
.get(`${this.proxyURL}?url=${url}`)
|
|
84
|
+
.then((activityInfoResponse) => {
|
|
85
|
+
const { data } = activityInfoResponse;
|
|
86
|
+
data.images.forEach((image) => {
|
|
87
|
+
// eslint-disable-next-line no-param-reassign
|
|
88
|
+
image.url = this.getImgUrl(image.url);
|
|
89
|
+
});
|
|
90
|
+
return data;
|
|
91
|
+
})
|
|
92
|
+
.catch((errorResponse) => {
|
|
93
|
+
// eslint-disable-next-line no-console
|
|
94
|
+
console.error('booke-barbados-activityInfoResponse', errorResponse);
|
|
95
|
+
throw errorResponse.message;
|
|
96
|
+
});
|
|
97
|
+
};
|
|
98
|
+
this.searchAccommodation = async (startDate, endDate, adults, bounds) => {
|
|
99
|
+
// searchAccommodation?startDate=2022-05-5&endDate=2022-05-7&northEastLatitude=13.33&northEastLongitude=-59.42&southWestLatitude=13.03&southWestLongitude=-59.67&rooms=adults:2
|
|
100
|
+
const url = btoa(`${this.apiUrl}/searchAccommodation?countryId=3114&startDate=${startDate}&endDate=${endDate}&rooms=adults:${adults}&northEastLatitude=${bounds[0]}&northEastLongitude=${bounds[1]}&southWestLatitude=${bounds[2]}&southWestLongitude=${bounds[3]}`);
|
|
101
|
+
return (this.axios
|
|
102
|
+
.get(`${this.proxyURL}?url=${url}`)
|
|
103
|
+
.then((searchAccommodationResponse) => {
|
|
104
|
+
const { data } = searchAccommodationResponse;
|
|
105
|
+
data.hotelOffers.forEach((hoffer) => {
|
|
106
|
+
// eslint-disable-next-line no-param-reassign
|
|
107
|
+
hoffer.info.mainImageUrl = this.getImgUrl(hoffer.info.mainImageUrl);
|
|
108
|
+
});
|
|
109
|
+
return data;
|
|
110
|
+
})
|
|
111
|
+
// eslint-disable-next-line no-console
|
|
112
|
+
.catch((errorResponse) => {
|
|
113
|
+
// eslint-disable-next-line no-console
|
|
114
|
+
console.error('booke-barbados-searchAccommodationResponse', errorResponse);
|
|
115
|
+
throw errorResponse.message;
|
|
116
|
+
}));
|
|
117
|
+
};
|
|
118
|
+
this.searchCarRent = async (pickUpDateTime, dropOffDateTime, driverAge, pickUpCityId, dropOffCityId) => {
|
|
119
|
+
// searchCarRent?pickUpCityId=166987&dropOffCityId=166987&pickUpDateTime=2022-05-10&dropOffDateTime=2022-05-21&driverAge=24&driverCitizenshipId=3114
|
|
120
|
+
const url = btoa(`${this.apiUrl}/searchCarRent?driverCitizenshipId=3114&pickUpDateTime=${pickUpDateTime}&dropOffDateTime=${dropOffDateTime}&driverAge=${driverAge ||
|
|
121
|
+
24}&pickUpCityId=${pickUpCityId || 166987}&dropOffCityId=${dropOffCityId || 166987}`);
|
|
122
|
+
return (this.axios
|
|
123
|
+
.get(`${this.proxyURL}?url=${url}`)
|
|
124
|
+
.then((searchCarRentResponse) => {
|
|
125
|
+
const { data } = searchCarRentResponse;
|
|
126
|
+
const result = [];
|
|
127
|
+
for (let k = 0; k < data.products.length; k += 1) {
|
|
128
|
+
for (let i = 0; i < data.products[k].offers.length; i += 1) {
|
|
129
|
+
for (let j = 0; j < data.products[k].offers[i].pickUpPoints.length; j += 1) {
|
|
130
|
+
if (data.products[k].offers[i].pickUpPoints[j].latitude) {
|
|
131
|
+
const existingCarRentOffer = result.find((r) => r.locationCode === data.products[k].offers[i].pickUpPoints[j].locationCode);
|
|
132
|
+
if (existingCarRentOffer) {
|
|
133
|
+
existingCarRentOffer.images.push(...data.products[k].info.images.map((img) => {
|
|
134
|
+
// eslint-disable-next-line no-param-reassign
|
|
135
|
+
img.url = this.getImgUrl(img.url);
|
|
136
|
+
return img.url;
|
|
137
|
+
}));
|
|
138
|
+
}
|
|
139
|
+
else {
|
|
140
|
+
const carRentOffice = {
|
|
141
|
+
supplierCode: data.products[k].info.supplierCode,
|
|
142
|
+
carRentCompanyName: data.products[k].info.carRentCompanyName,
|
|
143
|
+
images: [
|
|
144
|
+
...data.products[k].info.images.map((img) => {
|
|
145
|
+
// eslint-disable-next-line no-param-reassign
|
|
146
|
+
img.url = this.getImgUrl(img.url);
|
|
147
|
+
return img.url;
|
|
148
|
+
}),
|
|
149
|
+
],
|
|
150
|
+
features: data.products[k].info.features,
|
|
151
|
+
shortDescription: data.products[k].info.shortDescription,
|
|
152
|
+
description: data.products[k].info.description,
|
|
153
|
+
locationCode: data.products[k].offers[i].pickUpPoints[j].locationCode,
|
|
154
|
+
type: data.products[k].offers[i].pickUpPoints[j].type,
|
|
155
|
+
name: data.products[k].offers[i].pickUpPoints[j].name,
|
|
156
|
+
address: data.products[k].offers[i].pickUpPoints[j].address,
|
|
157
|
+
longitude: data.products[k].offers[i].pickUpPoints[j].longitude,
|
|
158
|
+
latitude: data.products[k].offers[i].pickUpPoints[j].latitude,
|
|
159
|
+
};
|
|
160
|
+
result.push(carRentOffice);
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
return result;
|
|
167
|
+
})
|
|
168
|
+
// eslint-disable-next-line no-console
|
|
169
|
+
.catch((errorResponse) => {
|
|
170
|
+
// eslint-disable-next-line no-console
|
|
171
|
+
console.error('booke-barbados-searchCarRentResponse', errorResponse);
|
|
172
|
+
throw errorResponse.message;
|
|
173
|
+
}));
|
|
174
|
+
};
|
|
175
|
+
this.proxyURL = proxyURL;
|
|
176
|
+
this.sandbox = sandbox;
|
|
177
|
+
this.apiUrl = apiUrl;
|
|
178
|
+
this.axios = axios_1.default.create();
|
|
179
|
+
// this.axios.defaults.baseURL = `${this.proxyURL}?url=${btoa(apiUrl)}`;
|
|
180
|
+
this.axios.defaults.timeout = 30000; // 2500;
|
|
181
|
+
this.axios.defaults.headers.common['Accept-Language'] = 'en-US';
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
185
|
+
/* const searchAccommodationResponse: Providers.Bb.SearchAccommodationResponse = {
|
|
186
|
+
searchKey: 'TfHZjSMkUtAKlAB5',
|
|
187
|
+
offersCount: 5,
|
|
188
|
+
filters: {
|
|
189
|
+
priceFrom: 228.76,
|
|
190
|
+
priceTo: 988.71,
|
|
191
|
+
hotelName: [
|
|
192
|
+
'Ocean Spray Apartments',
|
|
193
|
+
'Coconut Court Beach Hotel',
|
|
194
|
+
'Time Out Hotel',
|
|
195
|
+
'Barbados Beach Club - All Inclusive',
|
|
196
|
+
'Courtyard by Marriott Bridgetown',
|
|
197
|
+
],
|
|
198
|
+
categories: [3],
|
|
199
|
+
roomTypes: [
|
|
200
|
+
'Executive Guest Room',
|
|
201
|
+
'Superior Room',
|
|
202
|
+
'Super Deluxe Room',
|
|
203
|
+
'Pool View Room',
|
|
204
|
+
'Two Bedroom Apartment',
|
|
205
|
+
'Queen Guest Room',
|
|
206
|
+
'King Guest Room',
|
|
207
|
+
'Standard Room',
|
|
208
|
+
'Honeymoon Room',
|
|
209
|
+
'Studio Apartment Ocean View',
|
|
210
|
+
'One Bedroom Apartment',
|
|
211
|
+
'Deluxe Room',
|
|
212
|
+
'King Executive Suite',
|
|
213
|
+
'One Bedroom Apartment (Landside)',
|
|
214
|
+
'Studio Apartment Garden View',
|
|
215
|
+
],
|
|
216
|
+
mealTypes: ['All Inclusive', 'Room Only'],
|
|
217
|
+
hotelServices: [
|
|
218
|
+
'Gift Shop',
|
|
219
|
+
'Elevators',
|
|
220
|
+
'Tour/Ticket Assistance',
|
|
221
|
+
'Visa Credit/Debit',
|
|
222
|
+
'Beach',
|
|
223
|
+
'Car rentals',
|
|
224
|
+
'Business Centre',
|
|
225
|
+
'Connecting/Adjoining Rooms',
|
|
226
|
+
'Non-motorized watersports',
|
|
227
|
+
'Assistive Listening devices available',
|
|
228
|
+
'Laundry Service',
|
|
229
|
+
'Swimming',
|
|
230
|
+
'MasterCard Credit/Debit',
|
|
231
|
+
'Self-catering',
|
|
232
|
+
'Beach Shuttle',
|
|
233
|
+
'Buffet',
|
|
234
|
+
'Convenience store',
|
|
235
|
+
'Horseback riding nearby',
|
|
236
|
+
'Free Public Space Wi-Fi',
|
|
237
|
+
'Reception',
|
|
238
|
+
'Discover',
|
|
239
|
+
'Surfing',
|
|
240
|
+
'Fire Extinguisher',
|
|
241
|
+
'Enhanced cleaning measures',
|
|
242
|
+
'Snorkelling',
|
|
243
|
+
'Surfing lessons',
|
|
244
|
+
'Wheelchair Accessibility',
|
|
245
|
+
'Live Entertainment',
|
|
246
|
+
'Kitesurfing',
|
|
247
|
+
'Island tours',
|
|
248
|
+
'American Express',
|
|
249
|
+
'Golf Course nearby',
|
|
250
|
+
'Free Wi-Fi',
|
|
251
|
+
'A la carte dining',
|
|
252
|
+
'Kids Menu',
|
|
253
|
+
'Concierge service',
|
|
254
|
+
'First aid kit',
|
|
255
|
+
'Cash',
|
|
256
|
+
'Fishing',
|
|
257
|
+
'Street parking',
|
|
258
|
+
'Dry cleaning service',
|
|
259
|
+
'Beach Loungers',
|
|
260
|
+
'Snack/sandwich bar',
|
|
261
|
+
'Pathways',
|
|
262
|
+
'Accessible shower',
|
|
263
|
+
'Tennis on site',
|
|
264
|
+
'Souvenir shop',
|
|
265
|
+
'Conference Equipment',
|
|
266
|
+
'Roll-in shower available on request',
|
|
267
|
+
'Windsurfing',
|
|
268
|
+
'Currency exchange',
|
|
269
|
+
'Smoke free property',
|
|
270
|
+
'Boat trips',
|
|
271
|
+
'Doctor on call',
|
|
272
|
+
'Garden',
|
|
273
|
+
'Beach Bar',
|
|
274
|
+
'Parking',
|
|
275
|
+
'Ecotours',
|
|
276
|
+
'Spa Services available',
|
|
277
|
+
'Golf Driving range nearby',
|
|
278
|
+
'Restaurant',
|
|
279
|
+
'Bar',
|
|
280
|
+
'Cots/Cribs',
|
|
281
|
+
'Fitness facilities',
|
|
282
|
+
'Books/Library',
|
|
283
|
+
'Free Managers Reception',
|
|
284
|
+
'Meeting Room',
|
|
285
|
+
'Car park',
|
|
286
|
+
],
|
|
287
|
+
hotelRoomServices: [
|
|
288
|
+
'Towels provided',
|
|
289
|
+
'Ocean view',
|
|
290
|
+
'Telephone',
|
|
291
|
+
'Limited housekeeping service',
|
|
292
|
+
'Free Wi-Fi',
|
|
293
|
+
'Limited hours room service',
|
|
294
|
+
'Microwave',
|
|
295
|
+
'Iron',
|
|
296
|
+
'Coffee/Tea maker',
|
|
297
|
+
'Seating area with chair',
|
|
298
|
+
'Sofa bed',
|
|
299
|
+
'In-room safe',
|
|
300
|
+
'Adjoining Room',
|
|
301
|
+
'Pool view',
|
|
302
|
+
'Desk',
|
|
303
|
+
'Separate shower',
|
|
304
|
+
'Private bathroom',
|
|
305
|
+
'Air conditioning',
|
|
306
|
+
'Bathroom Amenities',
|
|
307
|
+
'Blackout drapes/curtains',
|
|
308
|
+
'Garden view',
|
|
309
|
+
'Mini-refrigerator',
|
|
310
|
+
'Hairdryer',
|
|
311
|
+
'Refrigerator',
|
|
312
|
+
'Cable/Satellite television',
|
|
313
|
+
'Tub/shower combination',
|
|
314
|
+
'Partial ocean view',
|
|
315
|
+
'Cribs available',
|
|
316
|
+
'Kitchenette',
|
|
317
|
+
'Non-smoking',
|
|
318
|
+
'Eco-friendly housekeeping',
|
|
319
|
+
'Ceiling Fan',
|
|
320
|
+
'Television',
|
|
321
|
+
'Free local calls',
|
|
322
|
+
'Stove',
|
|
323
|
+
'Ironing Board',
|
|
324
|
+
'Linens provided',
|
|
325
|
+
'Alarm Clock',
|
|
326
|
+
'Daily housekeeping service',
|
|
327
|
+
'Balcony/Terrace',
|
|
328
|
+
'Street view',
|
|
329
|
+
],
|
|
330
|
+
sharedRooms: [],
|
|
331
|
+
hotelClassifications: [],
|
|
332
|
+
hotelTypes: ['Motel', 'Hotel', 'All-Inclusive resort'],
|
|
333
|
+
},
|
|
334
|
+
processed: true,
|
|
335
|
+
hotelOffers: [
|
|
336
|
+
{
|
|
337
|
+
info: {
|
|
338
|
+
name: 'Time Out Hotel',
|
|
339
|
+
address: 'Dover Christ Church',
|
|
340
|
+
category: 3,
|
|
341
|
+
supplierCode: 'company.2134487',
|
|
342
|
+
cityId: 527499,
|
|
343
|
+
cityCode: '2622476',
|
|
344
|
+
cityName: 'Dover',
|
|
345
|
+
countryName: 'Barbados',
|
|
346
|
+
hotelCode: 'TOHSG',
|
|
347
|
+
latitude: '13.06683',
|
|
348
|
+
longitude: '-59.56745',
|
|
349
|
+
mainImageUrl: 'hotel-images2/1/b/9/1b91f865caa14f7e93ef97223f4f223f.jpg',
|
|
350
|
+
hotelType: 'LIVING',
|
|
351
|
+
offerServicesForFilter: [],
|
|
352
|
+
ratings: [
|
|
353
|
+
{
|
|
354
|
+
ratingSource: 'INTERNAL',
|
|
355
|
+
rating: 875.0,
|
|
356
|
+
},
|
|
357
|
+
],
|
|
358
|
+
hotelServices: [
|
|
359
|
+
{
|
|
360
|
+
supplierServiceName: 'Car park',
|
|
361
|
+
groupName: 'Property Amenities',
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
supplierServiceName: 'Car rentals',
|
|
365
|
+
groupName: 'Property Amenities',
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
supplierServiceName: 'Concierge service',
|
|
369
|
+
groupName: 'Property Amenities',
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
supplierServiceName: 'Doctor on call',
|
|
373
|
+
groupName: 'Property Amenities',
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
supplierServiceName: 'Dry cleaning service',
|
|
377
|
+
groupName: 'Property Amenities',
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
supplierServiceName: 'Street parking',
|
|
381
|
+
groupName: 'Property Amenities',
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
supplierServiceName: 'Free Wi-Fi',
|
|
385
|
+
groupName: 'Property Amenities',
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
supplierServiceName: 'Bar',
|
|
389
|
+
groupName: 'Property Amenities',
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
supplierServiceName: 'American Express',
|
|
393
|
+
groupName: 'Property Amenities',
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
supplierServiceName: 'Cash',
|
|
397
|
+
groupName: 'Property Amenities',
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
supplierServiceName: 'Discover',
|
|
401
|
+
groupName: 'Property Amenities',
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
supplierServiceName: 'MasterCard Credit/Debit',
|
|
405
|
+
groupName: 'Property Amenities',
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
supplierServiceName: 'Visa Credit/Debit',
|
|
409
|
+
groupName: 'Property Amenities',
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
supplierServiceName: 'Boat trips',
|
|
413
|
+
groupName: 'Property Amenities',
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
supplierServiceName: 'Convenience store',
|
|
417
|
+
groupName: 'Property Amenities',
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
supplierServiceName: 'Ecotours',
|
|
421
|
+
groupName: 'Property Amenities',
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
supplierServiceName: 'Golf Course nearby',
|
|
425
|
+
groupName: 'Property Amenities',
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
supplierServiceName: 'Golf Driving range nearby',
|
|
429
|
+
groupName: 'Property Amenities',
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
supplierServiceName: 'Swimming',
|
|
433
|
+
groupName: 'Property Amenities',
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
supplierServiceName: 'Enhanced cleaning measures',
|
|
437
|
+
groupName: 'Property Amenities',
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
supplierServiceName: 'First aid kit',
|
|
441
|
+
groupName: 'Property Amenities',
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
supplierServiceName: 'Free Public Space Wi-Fi',
|
|
445
|
+
groupName: 'Property Amenities',
|
|
446
|
+
},
|
|
447
|
+
],
|
|
448
|
+
hotelClassifications: [],
|
|
449
|
+
type: 'Motel',
|
|
450
|
+
typeOTAName: 'Motel',
|
|
451
|
+
recommended: false,
|
|
452
|
+
},
|
|
453
|
+
roomOffers: [
|
|
454
|
+
{
|
|
455
|
+
offerKey: 'fl25LqorL2GCOvP3',
|
|
456
|
+
cancellations: [
|
|
457
|
+
{
|
|
458
|
+
dateFrom: '2022-05-03 00:00',
|
|
459
|
+
dateTo: '2022-05-05 23:59',
|
|
460
|
+
price: {
|
|
461
|
+
currency: 'USD',
|
|
462
|
+
amount: 420.0,
|
|
463
|
+
},
|
|
464
|
+
convertedPrice: {
|
|
465
|
+
currency: 'USD',
|
|
466
|
+
amount: 420.0,
|
|
467
|
+
},
|
|
468
|
+
noShow: false,
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
price: {
|
|
472
|
+
currency: 'USD',
|
|
473
|
+
amount: 420.0,
|
|
474
|
+
},
|
|
475
|
+
convertedPrice: {
|
|
476
|
+
currency: 'USD',
|
|
477
|
+
amount: 420.0,
|
|
478
|
+
},
|
|
479
|
+
noShow: true,
|
|
480
|
+
},
|
|
481
|
+
],
|
|
482
|
+
taxesAndFeesIncluded: false,
|
|
483
|
+
salesTerms: [
|
|
484
|
+
{
|
|
485
|
+
type: 'CLIENT',
|
|
486
|
+
price: {
|
|
487
|
+
currency: 'USD',
|
|
488
|
+
amount: 428.76,
|
|
489
|
+
taxesAndFees: [],
|
|
490
|
+
},
|
|
491
|
+
originalSupplierCurrency: 'USD',
|
|
492
|
+
promoCodeApplied: false,
|
|
493
|
+
priceBreakDowns: [
|
|
494
|
+
{
|
|
495
|
+
date: '2022-05-05',
|
|
496
|
+
weekDayNumber: 4,
|
|
497
|
+
weekDayName: 'Thursday',
|
|
498
|
+
price: {
|
|
499
|
+
currency: 'USD',
|
|
500
|
+
amount: 175.0,
|
|
501
|
+
originalCurrency: 'USD',
|
|
502
|
+
originalAmount: 175.0,
|
|
503
|
+
},
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
date: '2022-05-06',
|
|
507
|
+
weekDayNumber: 5,
|
|
508
|
+
weekDayName: 'Friday',
|
|
509
|
+
price: {
|
|
510
|
+
currency: 'USD',
|
|
511
|
+
amount: 175.0,
|
|
512
|
+
originalCurrency: 'USD',
|
|
513
|
+
originalAmount: 175.0,
|
|
514
|
+
},
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
name: 'Service Charge',
|
|
518
|
+
price: {
|
|
519
|
+
currency: 'USD',
|
|
520
|
+
amount: 35.0,
|
|
521
|
+
originalCurrency: 'USD',
|
|
522
|
+
originalAmount: 35.0,
|
|
523
|
+
},
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
name: 'Room Rate Levy',
|
|
527
|
+
price: {
|
|
528
|
+
currency: 'USD',
|
|
529
|
+
amount: 8.76,
|
|
530
|
+
originalCurrency: 'USD',
|
|
531
|
+
originalAmount: 8.76,
|
|
532
|
+
},
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
name: 'VAT',
|
|
536
|
+
price: {
|
|
537
|
+
currency: 'USD',
|
|
538
|
+
amount: 35.0,
|
|
539
|
+
originalCurrency: 'USD',
|
|
540
|
+
originalAmount: 35.0,
|
|
541
|
+
},
|
|
542
|
+
},
|
|
543
|
+
],
|
|
544
|
+
},
|
|
545
|
+
],
|
|
546
|
+
rph: '1',
|
|
547
|
+
guests: {
|
|
548
|
+
adults: 2,
|
|
549
|
+
ages: [],
|
|
550
|
+
},
|
|
551
|
+
available: false,
|
|
552
|
+
info: {
|
|
553
|
+
roomType: 'Superior Room',
|
|
554
|
+
roomTypeServiceId: 2134649,
|
|
555
|
+
mealTypes: [
|
|
556
|
+
{
|
|
557
|
+
otaCode: 14,
|
|
558
|
+
otaName: 'Room only\t',
|
|
559
|
+
standardCode: 'RO',
|
|
560
|
+
standardName: 'Room only',
|
|
561
|
+
name: 'Room Only',
|
|
562
|
+
id: 2134652,
|
|
563
|
+
},
|
|
564
|
+
],
|
|
565
|
+
mealOptionsAvailable: false,
|
|
566
|
+
supplierRoomTypeCode: 'SRTC_1920199',
|
|
567
|
+
bedroomsQuantity: 1,
|
|
568
|
+
bathroomsQuantity: 1,
|
|
569
|
+
bedTypes: [
|
|
570
|
+
{
|
|
571
|
+
type: 'King Bed',
|
|
572
|
+
quantity: 1,
|
|
573
|
+
alternate: false,
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
type: 'Twin Bed',
|
|
577
|
+
quantity: 2,
|
|
578
|
+
alternate: true,
|
|
579
|
+
},
|
|
580
|
+
],
|
|
581
|
+
},
|
|
582
|
+
nonRefundable: true,
|
|
583
|
+
roomServices: [
|
|
584
|
+
'Balcony/Terrace',
|
|
585
|
+
'Cable/Satellite television',
|
|
586
|
+
'Air conditioning',
|
|
587
|
+
'Eco-friendly housekeeping',
|
|
588
|
+
'Mini-refrigerator',
|
|
589
|
+
'In-room safe',
|
|
590
|
+
'Free Wi-Fi',
|
|
591
|
+
'Daily housekeeping service',
|
|
592
|
+
'Cribs available',
|
|
593
|
+
'Telephone',
|
|
594
|
+
'Towels provided',
|
|
595
|
+
'Television',
|
|
596
|
+
'Private bathroom',
|
|
597
|
+
],
|
|
598
|
+
extraServices: true,
|
|
599
|
+
packageOnly: false,
|
|
600
|
+
hotelCode: 'TOHSG',
|
|
601
|
+
hotelSupplierCode: 'company.2134487',
|
|
602
|
+
hotelSupplierId: 2134487,
|
|
603
|
+
promoCode: false,
|
|
604
|
+
hotDeal: false,
|
|
605
|
+
percentDiscount: false,
|
|
606
|
+
specialOffer: false,
|
|
607
|
+
externalDiscount: false,
|
|
608
|
+
freeNightsDiscount: false,
|
|
609
|
+
cardGuarantee: false,
|
|
610
|
+
onExtraBed: [],
|
|
611
|
+
onWithoutPlace: [],
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
offerKey: '5RNyPntrYAi6g0UZ',
|
|
615
|
+
cancellations: [
|
|
616
|
+
{
|
|
617
|
+
dateFrom: '2022-05-03 00:00',
|
|
618
|
+
dateTo: '2022-05-05 23:59',
|
|
619
|
+
price: {
|
|
620
|
+
currency: 'USD',
|
|
621
|
+
amount: 420.0,
|
|
622
|
+
},
|
|
623
|
+
convertedPrice: {
|
|
624
|
+
currency: 'USD',
|
|
625
|
+
amount: 420.0,
|
|
626
|
+
},
|
|
627
|
+
noShow: false,
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
price: {
|
|
631
|
+
currency: 'USD',
|
|
632
|
+
amount: 420.0,
|
|
633
|
+
},
|
|
634
|
+
convertedPrice: {
|
|
635
|
+
currency: 'USD',
|
|
636
|
+
amount: 420.0,
|
|
637
|
+
},
|
|
638
|
+
noShow: true,
|
|
639
|
+
},
|
|
640
|
+
],
|
|
641
|
+
taxesAndFeesIncluded: false,
|
|
642
|
+
salesTerms: [
|
|
643
|
+
{
|
|
644
|
+
type: 'CLIENT',
|
|
645
|
+
price: {
|
|
646
|
+
currency: 'USD',
|
|
647
|
+
amount: 428.76,
|
|
648
|
+
taxesAndFees: [],
|
|
649
|
+
},
|
|
650
|
+
originalSupplierCurrency: 'USD',
|
|
651
|
+
promoCodeApplied: false,
|
|
652
|
+
priceBreakDowns: [
|
|
653
|
+
{
|
|
654
|
+
date: '2022-05-05',
|
|
655
|
+
weekDayNumber: 4,
|
|
656
|
+
weekDayName: 'Thursday',
|
|
657
|
+
price: {
|
|
658
|
+
currency: 'USD',
|
|
659
|
+
amount: 175.0,
|
|
660
|
+
originalCurrency: 'USD',
|
|
661
|
+
originalAmount: 175.0,
|
|
662
|
+
},
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
date: '2022-05-06',
|
|
666
|
+
weekDayNumber: 5,
|
|
667
|
+
weekDayName: 'Friday',
|
|
668
|
+
price: {
|
|
669
|
+
currency: 'USD',
|
|
670
|
+
amount: 175.0,
|
|
671
|
+
originalCurrency: 'USD',
|
|
672
|
+
originalAmount: 175.0,
|
|
673
|
+
},
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
name: 'Service Charge',
|
|
677
|
+
price: {
|
|
678
|
+
currency: 'USD',
|
|
679
|
+
amount: 35.0,
|
|
680
|
+
originalCurrency: 'USD',
|
|
681
|
+
originalAmount: 35.0,
|
|
682
|
+
},
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
name: 'Room Rate Levy',
|
|
686
|
+
price: {
|
|
687
|
+
currency: 'USD',
|
|
688
|
+
amount: 8.76,
|
|
689
|
+
originalCurrency: 'USD',
|
|
690
|
+
originalAmount: 8.76,
|
|
691
|
+
},
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
name: 'VAT',
|
|
695
|
+
price: {
|
|
696
|
+
currency: 'USD',
|
|
697
|
+
amount: 35.0,
|
|
698
|
+
originalCurrency: 'USD',
|
|
699
|
+
originalAmount: 35.0,
|
|
700
|
+
},
|
|
701
|
+
},
|
|
702
|
+
],
|
|
703
|
+
},
|
|
704
|
+
],
|
|
705
|
+
rph: '1',
|
|
706
|
+
guests: {
|
|
707
|
+
adults: 2,
|
|
708
|
+
ages: [],
|
|
709
|
+
},
|
|
710
|
+
available: false,
|
|
711
|
+
info: {
|
|
712
|
+
roomType: 'Standard Room',
|
|
713
|
+
roomTypeServiceId: 2134651,
|
|
714
|
+
mealTypes: [
|
|
715
|
+
{
|
|
716
|
+
otaCode: 14,
|
|
717
|
+
otaName: 'Room only\t',
|
|
718
|
+
standardCode: 'RO',
|
|
719
|
+
standardName: 'Room only',
|
|
720
|
+
name: 'Room Only',
|
|
721
|
+
id: 2134652,
|
|
722
|
+
},
|
|
723
|
+
],
|
|
724
|
+
mealOptionsAvailable: false,
|
|
725
|
+
supplierRoomTypeCode: 'SRTC_1920198',
|
|
726
|
+
bedroomsQuantity: 1,
|
|
727
|
+
bathroomsQuantity: 1,
|
|
728
|
+
bedTypes: [
|
|
729
|
+
{
|
|
730
|
+
type: 'King Bed',
|
|
731
|
+
quantity: 1,
|
|
732
|
+
alternate: false,
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
type: 'Twin Bed',
|
|
736
|
+
quantity: 2,
|
|
737
|
+
alternate: true,
|
|
738
|
+
},
|
|
739
|
+
],
|
|
740
|
+
},
|
|
741
|
+
nonRefundable: true,
|
|
742
|
+
roomServices: [
|
|
743
|
+
'Cable/Satellite television',
|
|
744
|
+
'Air conditioning',
|
|
745
|
+
'Eco-friendly housekeeping',
|
|
746
|
+
'Mini-refrigerator',
|
|
747
|
+
'In-room safe',
|
|
748
|
+
'Free Wi-Fi',
|
|
749
|
+
'Daily housekeeping service',
|
|
750
|
+
'Cribs available',
|
|
751
|
+
'Telephone',
|
|
752
|
+
'Towels provided',
|
|
753
|
+
'Television',
|
|
754
|
+
'Separate shower',
|
|
755
|
+
'Private bathroom',
|
|
756
|
+
],
|
|
757
|
+
extraServices: true,
|
|
758
|
+
packageOnly: false,
|
|
759
|
+
hotelCode: 'TOHSG',
|
|
760
|
+
hotelSupplierCode: 'company.2134487',
|
|
761
|
+
hotelSupplierId: 2134487,
|
|
762
|
+
promoCode: false,
|
|
763
|
+
hotDeal: false,
|
|
764
|
+
percentDiscount: false,
|
|
765
|
+
specialOffer: false,
|
|
766
|
+
externalDiscount: false,
|
|
767
|
+
freeNightsDiscount: false,
|
|
768
|
+
cardGuarantee: false,
|
|
769
|
+
onExtraBed: [],
|
|
770
|
+
onWithoutPlace: [],
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
offerKey: 'e95XF31XitwzLlqa',
|
|
774
|
+
cancellations: [
|
|
775
|
+
{
|
|
776
|
+
dateFrom: '2022-05-03 00:00',
|
|
777
|
+
dateTo: '2022-05-05 23:59',
|
|
778
|
+
price: {
|
|
779
|
+
currency: 'USD',
|
|
780
|
+
amount: 460.8,
|
|
781
|
+
},
|
|
782
|
+
convertedPrice: {
|
|
783
|
+
currency: 'USD',
|
|
784
|
+
amount: 460.8,
|
|
785
|
+
},
|
|
786
|
+
noShow: false,
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
price: {
|
|
790
|
+
currency: 'USD',
|
|
791
|
+
amount: 460.8,
|
|
792
|
+
},
|
|
793
|
+
convertedPrice: {
|
|
794
|
+
currency: 'USD',
|
|
795
|
+
amount: 460.8,
|
|
796
|
+
},
|
|
797
|
+
noShow: true,
|
|
798
|
+
},
|
|
799
|
+
],
|
|
800
|
+
taxesAndFeesIncluded: false,
|
|
801
|
+
salesTerms: [
|
|
802
|
+
{
|
|
803
|
+
type: 'CLIENT',
|
|
804
|
+
price: {
|
|
805
|
+
currency: 'USD',
|
|
806
|
+
amount: 469.56,
|
|
807
|
+
taxesAndFees: [],
|
|
808
|
+
},
|
|
809
|
+
originalSupplierCurrency: 'USD',
|
|
810
|
+
promoCodeApplied: false,
|
|
811
|
+
priceBreakDowns: [
|
|
812
|
+
{
|
|
813
|
+
date: '2022-05-05',
|
|
814
|
+
weekDayNumber: 4,
|
|
815
|
+
weekDayName: 'Thursday',
|
|
816
|
+
price: {
|
|
817
|
+
currency: 'USD',
|
|
818
|
+
amount: 192.0,
|
|
819
|
+
originalCurrency: 'USD',
|
|
820
|
+
originalAmount: 192.0,
|
|
821
|
+
},
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
date: '2022-05-06',
|
|
825
|
+
weekDayNumber: 5,
|
|
826
|
+
weekDayName: 'Friday',
|
|
827
|
+
price: {
|
|
828
|
+
currency: 'USD',
|
|
829
|
+
amount: 192.0,
|
|
830
|
+
originalCurrency: 'USD',
|
|
831
|
+
originalAmount: 192.0,
|
|
832
|
+
},
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
name: 'Service Charge',
|
|
836
|
+
price: {
|
|
837
|
+
currency: 'USD',
|
|
838
|
+
amount: 38.4,
|
|
839
|
+
originalCurrency: 'USD',
|
|
840
|
+
originalAmount: 38.4,
|
|
841
|
+
},
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
name: 'Room Rate Levy',
|
|
845
|
+
price: {
|
|
846
|
+
currency: 'USD',
|
|
847
|
+
amount: 8.76,
|
|
848
|
+
originalCurrency: 'USD',
|
|
849
|
+
originalAmount: 8.76,
|
|
850
|
+
},
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
name: 'VAT',
|
|
854
|
+
price: {
|
|
855
|
+
currency: 'USD',
|
|
856
|
+
amount: 38.4,
|
|
857
|
+
originalCurrency: 'USD',
|
|
858
|
+
originalAmount: 38.4,
|
|
859
|
+
},
|
|
860
|
+
},
|
|
861
|
+
],
|
|
862
|
+
},
|
|
863
|
+
],
|
|
864
|
+
rph: '1',
|
|
865
|
+
guests: {
|
|
866
|
+
adults: 2,
|
|
867
|
+
ages: [],
|
|
868
|
+
},
|
|
869
|
+
available: false,
|
|
870
|
+
info: {
|
|
871
|
+
roomType: 'Pool View Room',
|
|
872
|
+
roomTypeServiceId: 2134648,
|
|
873
|
+
mealTypes: [
|
|
874
|
+
{
|
|
875
|
+
otaCode: 14,
|
|
876
|
+
otaName: 'Room only\t',
|
|
877
|
+
standardCode: 'RO',
|
|
878
|
+
standardName: 'Room only',
|
|
879
|
+
name: 'Room Only',
|
|
880
|
+
id: 2134652,
|
|
881
|
+
},
|
|
882
|
+
],
|
|
883
|
+
mealOptionsAvailable: false,
|
|
884
|
+
supplierRoomTypeCode: 'SRTC_1920200',
|
|
885
|
+
bedroomsQuantity: 1,
|
|
886
|
+
bathroomsQuantity: 1,
|
|
887
|
+
bedTypes: [
|
|
888
|
+
{
|
|
889
|
+
type: 'Double Bed',
|
|
890
|
+
quantity: 2,
|
|
891
|
+
alternate: false,
|
|
892
|
+
},
|
|
893
|
+
],
|
|
894
|
+
},
|
|
895
|
+
nonRefundable: true,
|
|
896
|
+
roomServices: [
|
|
897
|
+
'Balcony/Terrace',
|
|
898
|
+
'Cable/Satellite television',
|
|
899
|
+
'Air conditioning',
|
|
900
|
+
'Eco-friendly housekeeping',
|
|
901
|
+
'Mini-refrigerator',
|
|
902
|
+
'In-room safe',
|
|
903
|
+
'Free Wi-Fi',
|
|
904
|
+
'Daily housekeeping service',
|
|
905
|
+
'Cribs available',
|
|
906
|
+
'Telephone',
|
|
907
|
+
'Towels provided',
|
|
908
|
+
'Television',
|
|
909
|
+
'Private bathroom',
|
|
910
|
+
'Pool view',
|
|
911
|
+
],
|
|
912
|
+
extraServices: true,
|
|
913
|
+
packageOnly: false,
|
|
914
|
+
hotelCode: 'TOHSG',
|
|
915
|
+
hotelSupplierCode: 'company.2134487',
|
|
916
|
+
hotelSupplierId: 2134487,
|
|
917
|
+
promoCode: false,
|
|
918
|
+
hotDeal: false,
|
|
919
|
+
percentDiscount: false,
|
|
920
|
+
specialOffer: false,
|
|
921
|
+
externalDiscount: false,
|
|
922
|
+
freeNightsDiscount: false,
|
|
923
|
+
cardGuarantee: false,
|
|
924
|
+
onExtraBed: [],
|
|
925
|
+
onWithoutPlace: [],
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
offerKey: 'D2LUpVPYZyYMyhrX',
|
|
929
|
+
cancellations: [
|
|
930
|
+
{
|
|
931
|
+
dateFrom: '2022-05-03 00:00',
|
|
932
|
+
dateTo: '2022-05-05 23:59',
|
|
933
|
+
price: {
|
|
934
|
+
currency: 'USD',
|
|
935
|
+
amount: 528.0,
|
|
936
|
+
},
|
|
937
|
+
convertedPrice: {
|
|
938
|
+
currency: 'USD',
|
|
939
|
+
amount: 528.0,
|
|
940
|
+
},
|
|
941
|
+
noShow: false,
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
price: {
|
|
945
|
+
currency: 'USD',
|
|
946
|
+
amount: 528.0,
|
|
947
|
+
},
|
|
948
|
+
convertedPrice: {
|
|
949
|
+
currency: 'USD',
|
|
950
|
+
amount: 528.0,
|
|
951
|
+
},
|
|
952
|
+
noShow: true,
|
|
953
|
+
},
|
|
954
|
+
],
|
|
955
|
+
taxesAndFeesIncluded: false,
|
|
956
|
+
salesTerms: [
|
|
957
|
+
{
|
|
958
|
+
type: 'CLIENT',
|
|
959
|
+
price: {
|
|
960
|
+
currency: 'USD',
|
|
961
|
+
amount: 536.76,
|
|
962
|
+
taxesAndFees: [],
|
|
963
|
+
},
|
|
964
|
+
originalSupplierCurrency: 'USD',
|
|
965
|
+
promoCodeApplied: false,
|
|
966
|
+
priceBreakDowns: [
|
|
967
|
+
{
|
|
968
|
+
date: '2022-05-05',
|
|
969
|
+
weekDayNumber: 4,
|
|
970
|
+
weekDayName: 'Thursday',
|
|
971
|
+
price: {
|
|
972
|
+
currency: 'USD',
|
|
973
|
+
amount: 220.0,
|
|
974
|
+
originalCurrency: 'USD',
|
|
975
|
+
originalAmount: 220.0,
|
|
976
|
+
},
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
date: '2022-05-06',
|
|
980
|
+
weekDayNumber: 5,
|
|
981
|
+
weekDayName: 'Friday',
|
|
982
|
+
price: {
|
|
983
|
+
currency: 'USD',
|
|
984
|
+
amount: 220.0,
|
|
985
|
+
originalCurrency: 'USD',
|
|
986
|
+
originalAmount: 220.0,
|
|
987
|
+
},
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
name: 'Service Charge',
|
|
991
|
+
price: {
|
|
992
|
+
currency: 'USD',
|
|
993
|
+
amount: 44.0,
|
|
994
|
+
originalCurrency: 'USD',
|
|
995
|
+
originalAmount: 44.0,
|
|
996
|
+
},
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
name: 'Room Rate Levy',
|
|
1000
|
+
price: {
|
|
1001
|
+
currency: 'USD',
|
|
1002
|
+
amount: 8.76,
|
|
1003
|
+
originalCurrency: 'USD',
|
|
1004
|
+
originalAmount: 8.76,
|
|
1005
|
+
},
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
name: 'VAT',
|
|
1009
|
+
price: {
|
|
1010
|
+
currency: 'USD',
|
|
1011
|
+
amount: 44.0,
|
|
1012
|
+
originalCurrency: 'USD',
|
|
1013
|
+
originalAmount: 44.0,
|
|
1014
|
+
},
|
|
1015
|
+
},
|
|
1016
|
+
],
|
|
1017
|
+
},
|
|
1018
|
+
],
|
|
1019
|
+
rph: '1',
|
|
1020
|
+
guests: {
|
|
1021
|
+
adults: 2,
|
|
1022
|
+
ages: [],
|
|
1023
|
+
},
|
|
1024
|
+
available: false,
|
|
1025
|
+
info: {
|
|
1026
|
+
roomType: 'Deluxe Room',
|
|
1027
|
+
roomTypeServiceId: 2134646,
|
|
1028
|
+
mealTypes: [
|
|
1029
|
+
{
|
|
1030
|
+
otaCode: 14,
|
|
1031
|
+
otaName: 'Room only\t',
|
|
1032
|
+
standardCode: 'RO',
|
|
1033
|
+
standardName: 'Room only',
|
|
1034
|
+
name: 'Room Only',
|
|
1035
|
+
id: 2134652,
|
|
1036
|
+
},
|
|
1037
|
+
],
|
|
1038
|
+
mealOptionsAvailable: false,
|
|
1039
|
+
supplierRoomTypeCode: 'SRTC_1920201',
|
|
1040
|
+
bedroomsQuantity: 1,
|
|
1041
|
+
bathroomsQuantity: 1,
|
|
1042
|
+
bedTypes: [
|
|
1043
|
+
{
|
|
1044
|
+
type: 'Double Bed',
|
|
1045
|
+
quantity: 2,
|
|
1046
|
+
alternate: false,
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
type: 'King Bed',
|
|
1050
|
+
quantity: 1,
|
|
1051
|
+
alternate: true,
|
|
1052
|
+
},
|
|
1053
|
+
],
|
|
1054
|
+
},
|
|
1055
|
+
nonRefundable: true,
|
|
1056
|
+
roomServices: [
|
|
1057
|
+
'Balcony/Terrace',
|
|
1058
|
+
'Cable/Satellite television',
|
|
1059
|
+
'Air conditioning',
|
|
1060
|
+
'Eco-friendly housekeeping',
|
|
1061
|
+
'Mini-refrigerator',
|
|
1062
|
+
'In-room safe',
|
|
1063
|
+
'Free Wi-Fi',
|
|
1064
|
+
'Daily housekeeping service',
|
|
1065
|
+
'Cribs available',
|
|
1066
|
+
'Telephone',
|
|
1067
|
+
'Street view',
|
|
1068
|
+
'Towels provided',
|
|
1069
|
+
'Television',
|
|
1070
|
+
'Private bathroom',
|
|
1071
|
+
],
|
|
1072
|
+
extraServices: true,
|
|
1073
|
+
packageOnly: false,
|
|
1074
|
+
hotelCode: 'TOHSG',
|
|
1075
|
+
hotelSupplierCode: 'company.2134487',
|
|
1076
|
+
hotelSupplierId: 2134487,
|
|
1077
|
+
promoCode: false,
|
|
1078
|
+
hotDeal: false,
|
|
1079
|
+
percentDiscount: false,
|
|
1080
|
+
specialOffer: false,
|
|
1081
|
+
externalDiscount: false,
|
|
1082
|
+
freeNightsDiscount: false,
|
|
1083
|
+
cardGuarantee: false,
|
|
1084
|
+
onExtraBed: [],
|
|
1085
|
+
onWithoutPlace: [],
|
|
1086
|
+
},
|
|
1087
|
+
],
|
|
1088
|
+
bookAllowed: false,
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
info: {
|
|
1092
|
+
name: 'Coconut Court Beach Hotel',
|
|
1093
|
+
address: 'Garrison Historic Area, Hastings, Christ Church',
|
|
1094
|
+
category: 3,
|
|
1095
|
+
supplierCode: 'company.1810972',
|
|
1096
|
+
cityId: 166988,
|
|
1097
|
+
cityCode: '166988',
|
|
1098
|
+
cityName: 'Hastings',
|
|
1099
|
+
countryName: 'Barbados',
|
|
1100
|
+
hotelCode: 'CCBH',
|
|
1101
|
+
latitude: '13.07614',
|
|
1102
|
+
longitude: '-59.60205',
|
|
1103
|
+
mainImageUrl: 'hotel-images2/5/0/5/505f26225ff94310889840f15d83eaf2.jpg',
|
|
1104
|
+
hotelType: 'LIVING',
|
|
1105
|
+
offerServicesForFilter: [],
|
|
1106
|
+
ratings: [
|
|
1107
|
+
{
|
|
1108
|
+
ratingSource: 'INTERNAL',
|
|
1109
|
+
rating: 820.0,
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
ratingSource: 'TRIPADVISOR',
|
|
1113
|
+
rating: 0.0,
|
|
1114
|
+
reviewsURL:
|
|
1115
|
+
'https://www.tripadvisor.com/Hotel_Review-g666611-d150723-Reviews-Coconut_Court_Beach_Hotel-Hastings_Christ_Church_Parish_Barbados.html',
|
|
1116
|
+
},
|
|
1117
|
+
],
|
|
1118
|
+
hotelServices: [
|
|
1119
|
+
{
|
|
1120
|
+
supplierServiceName: 'Car park',
|
|
1121
|
+
groupName: 'Property Amenities',
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
supplierServiceName: 'Car rentals',
|
|
1125
|
+
groupName: 'Property Amenities',
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
supplierServiceName: 'Concierge service',
|
|
1129
|
+
groupName: 'Property Amenities',
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
supplierServiceName: 'Currency exchange',
|
|
1133
|
+
groupName: 'Property Amenities',
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
supplierServiceName: 'Garden',
|
|
1137
|
+
groupName: 'Property Amenities',
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
supplierServiceName: 'Tour/Ticket Assistance',
|
|
1141
|
+
groupName: 'Property Amenities',
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
supplierServiceName: 'Business Centre',
|
|
1145
|
+
groupName: 'Property Amenities',
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
supplierServiceName: 'Connecting/Adjoining Rooms',
|
|
1149
|
+
groupName: 'Property Amenities',
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
supplierServiceName: 'Kids Menu',
|
|
1153
|
+
groupName: 'Property Amenities',
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
supplierServiceName: 'A la carte dining',
|
|
1157
|
+
groupName: 'Property Amenities',
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
supplierServiceName: 'Bar',
|
|
1161
|
+
groupName: 'Property Amenities',
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
supplierServiceName: 'Self-catering',
|
|
1165
|
+
groupName: 'Property Amenities',
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
supplierServiceName: 'Discover',
|
|
1169
|
+
groupName: 'Property Amenities',
|
|
1170
|
+
},
|
|
1171
|
+
{
|
|
1172
|
+
supplierServiceName: 'MasterCard Credit/Debit',
|
|
1173
|
+
groupName: 'Property Amenities',
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
supplierServiceName: 'Visa Credit/Debit',
|
|
1177
|
+
groupName: 'Property Amenities',
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
supplierServiceName: 'Beach',
|
|
1181
|
+
groupName: 'Property Amenities',
|
|
1182
|
+
},
|
|
1183
|
+
{
|
|
1184
|
+
supplierServiceName: 'Beach Bar',
|
|
1185
|
+
groupName: 'Property Amenities',
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
supplierServiceName: 'Fishing',
|
|
1189
|
+
groupName: 'Property Amenities',
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
supplierServiceName: 'Gift Shop',
|
|
1193
|
+
groupName: 'Property Amenities',
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
supplierServiceName: 'Island tours',
|
|
1197
|
+
groupName: 'Property Amenities',
|
|
1198
|
+
},
|
|
1199
|
+
{
|
|
1200
|
+
supplierServiceName: 'Non-motorized watersports',
|
|
1201
|
+
groupName: 'Property Amenities',
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
supplierServiceName: 'Snorkelling',
|
|
1205
|
+
groupName: 'Property Amenities',
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
supplierServiceName: 'Souvenir shop',
|
|
1209
|
+
groupName: 'Property Amenities',
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
supplierServiceName: 'Spa Services available',
|
|
1213
|
+
groupName: 'Property Amenities',
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
supplierServiceName: 'Surfing lessons',
|
|
1217
|
+
groupName: 'Property Amenities',
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
supplierServiceName: 'Swimming',
|
|
1221
|
+
groupName: 'Property Amenities',
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
supplierServiceName: 'Enhanced cleaning measures',
|
|
1225
|
+
groupName: 'Property Amenities',
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
supplierServiceName: 'Fire Extinguisher',
|
|
1229
|
+
groupName: 'Property Amenities',
|
|
1230
|
+
},
|
|
1231
|
+
],
|
|
1232
|
+
hotelClassifications: [],
|
|
1233
|
+
type: 'Hotel',
|
|
1234
|
+
typeOTAName: 'Hotel',
|
|
1235
|
+
recommended: false,
|
|
1236
|
+
},
|
|
1237
|
+
roomOffers: [
|
|
1238
|
+
{
|
|
1239
|
+
offerKey: 'qDH81BJZO7U0igSg',
|
|
1240
|
+
cancellations: [
|
|
1241
|
+
{
|
|
1242
|
+
dateFrom: '2022-05-02 00:00',
|
|
1243
|
+
dateTo: '2022-05-05 23:59',
|
|
1244
|
+
price: {
|
|
1245
|
+
currency: 'USD',
|
|
1246
|
+
amount: 220.0,
|
|
1247
|
+
},
|
|
1248
|
+
convertedPrice: {
|
|
1249
|
+
currency: 'USD',
|
|
1250
|
+
amount: 220.0,
|
|
1251
|
+
},
|
|
1252
|
+
noShow: false,
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
price: {
|
|
1256
|
+
currency: 'USD',
|
|
1257
|
+
amount: 220.0,
|
|
1258
|
+
},
|
|
1259
|
+
convertedPrice: {
|
|
1260
|
+
currency: 'USD',
|
|
1261
|
+
amount: 220.0,
|
|
1262
|
+
},
|
|
1263
|
+
noShow: true,
|
|
1264
|
+
},
|
|
1265
|
+
],
|
|
1266
|
+
taxesAndFeesIncluded: false,
|
|
1267
|
+
salesTerms: [
|
|
1268
|
+
{
|
|
1269
|
+
type: 'CLIENT',
|
|
1270
|
+
price: {
|
|
1271
|
+
currency: 'USD',
|
|
1272
|
+
amount: 239.3,
|
|
1273
|
+
taxesAndFees: [],
|
|
1274
|
+
},
|
|
1275
|
+
originalSupplierCurrency: 'USD',
|
|
1276
|
+
promoCodeApplied: false,
|
|
1277
|
+
priceBreakDowns: [
|
|
1278
|
+
{
|
|
1279
|
+
date: '2022-05-05',
|
|
1280
|
+
weekDayNumber: 4,
|
|
1281
|
+
weekDayName: 'Thursday',
|
|
1282
|
+
price: {
|
|
1283
|
+
currency: 'USD',
|
|
1284
|
+
amount: 100.0,
|
|
1285
|
+
originalCurrency: 'USD',
|
|
1286
|
+
originalAmount: 100.0,
|
|
1287
|
+
},
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
date: '2022-05-06',
|
|
1291
|
+
weekDayNumber: 5,
|
|
1292
|
+
weekDayName: 'Friday',
|
|
1293
|
+
price: {
|
|
1294
|
+
currency: 'USD',
|
|
1295
|
+
amount: 100.0,
|
|
1296
|
+
originalCurrency: 'USD',
|
|
1297
|
+
originalAmount: 100.0,
|
|
1298
|
+
},
|
|
1299
|
+
},
|
|
1300
|
+
{
|
|
1301
|
+
name: 'Room Rate Levy',
|
|
1302
|
+
price: {
|
|
1303
|
+
currency: 'USD',
|
|
1304
|
+
amount: 19.3,
|
|
1305
|
+
originalCurrency: 'USD',
|
|
1306
|
+
originalAmount: 19.3,
|
|
1307
|
+
},
|
|
1308
|
+
},
|
|
1309
|
+
{
|
|
1310
|
+
name: 'VAT',
|
|
1311
|
+
price: {
|
|
1312
|
+
currency: 'USD',
|
|
1313
|
+
amount: 20.0,
|
|
1314
|
+
originalCurrency: 'USD',
|
|
1315
|
+
originalAmount: 20.0,
|
|
1316
|
+
},
|
|
1317
|
+
},
|
|
1318
|
+
],
|
|
1319
|
+
},
|
|
1320
|
+
],
|
|
1321
|
+
rph: '1',
|
|
1322
|
+
guests: {
|
|
1323
|
+
adults: 2,
|
|
1324
|
+
ages: [],
|
|
1325
|
+
},
|
|
1326
|
+
available: false,
|
|
1327
|
+
info: {
|
|
1328
|
+
roomType: 'One Bedroom Apartment (Landside)',
|
|
1329
|
+
roomTypeServiceId: 1811149,
|
|
1330
|
+
mealTypes: [
|
|
1331
|
+
{
|
|
1332
|
+
otaCode: 14,
|
|
1333
|
+
otaName: 'Room only\t',
|
|
1334
|
+
standardCode: 'RO',
|
|
1335
|
+
standardName: 'Room only',
|
|
1336
|
+
name: 'Room Only',
|
|
1337
|
+
id: 1811158,
|
|
1338
|
+
},
|
|
1339
|
+
],
|
|
1340
|
+
mealOptionsAvailable: false,
|
|
1341
|
+
supplierRoomTypeCode: 'SRTC_1920083',
|
|
1342
|
+
bedroomsQuantity: 1,
|
|
1343
|
+
bathroomsQuantity: 1,
|
|
1344
|
+
bedTypes: [
|
|
1345
|
+
{
|
|
1346
|
+
type: 'King Bed',
|
|
1347
|
+
quantity: 1,
|
|
1348
|
+
alternate: false,
|
|
1349
|
+
},
|
|
1350
|
+
],
|
|
1351
|
+
},
|
|
1352
|
+
nonRefundable: true,
|
|
1353
|
+
roomServices: [
|
|
1354
|
+
'Bathroom Amenities',
|
|
1355
|
+
'Balcony/Terrace',
|
|
1356
|
+
'Alarm Clock',
|
|
1357
|
+
'Ceiling Fan',
|
|
1358
|
+
'Cable/Satellite television',
|
|
1359
|
+
'Blackout drapes/curtains',
|
|
1360
|
+
'Air conditioning',
|
|
1361
|
+
'Adjoining Room',
|
|
1362
|
+
'Linens provided',
|
|
1363
|
+
'Limited hours room service',
|
|
1364
|
+
'Kitchenette',
|
|
1365
|
+
'Eco-friendly housekeeping',
|
|
1366
|
+
'In-room safe',
|
|
1367
|
+
'Ironing Board',
|
|
1368
|
+
'Iron',
|
|
1369
|
+
'Free Wi-Fi',
|
|
1370
|
+
'Free local calls',
|
|
1371
|
+
'Hairdryer',
|
|
1372
|
+
'Daily housekeeping service',
|
|
1373
|
+
'Cribs available',
|
|
1374
|
+
'Coffee/Tea maker',
|
|
1375
|
+
'Desk',
|
|
1376
|
+
'Telephone',
|
|
1377
|
+
'Tub/shower combination',
|
|
1378
|
+
'Towels provided',
|
|
1379
|
+
'Television',
|
|
1380
|
+
'Ocean view',
|
|
1381
|
+
'Non-smoking',
|
|
1382
|
+
],
|
|
1383
|
+
extraServices: true,
|
|
1384
|
+
packageOnly: false,
|
|
1385
|
+
hotelCode: 'CCBH',
|
|
1386
|
+
hotelSupplierCode: 'company.1810972',
|
|
1387
|
+
hotelSupplierId: 1810972,
|
|
1388
|
+
promoCode: false,
|
|
1389
|
+
hotDeal: false,
|
|
1390
|
+
percentDiscount: false,
|
|
1391
|
+
specialOffer: false,
|
|
1392
|
+
externalDiscount: false,
|
|
1393
|
+
freeNightsDiscount: false,
|
|
1394
|
+
cardGuarantee: false,
|
|
1395
|
+
onExtraBed: [],
|
|
1396
|
+
onWithoutPlace: [],
|
|
1397
|
+
},
|
|
1398
|
+
],
|
|
1399
|
+
bookAllowed: false,
|
|
1400
|
+
},
|
|
1401
|
+
{
|
|
1402
|
+
info: {
|
|
1403
|
+
name: 'Ocean Spray Apartments',
|
|
1404
|
+
address: 'Surfers Point, Inch Marlow, Christ Church',
|
|
1405
|
+
category: 3,
|
|
1406
|
+
supplierCode: 'company.2131589',
|
|
1407
|
+
cityId: 501622,
|
|
1408
|
+
cityCode: '812044',
|
|
1409
|
+
cityName: 'Inch Marlow',
|
|
1410
|
+
countryName: 'Barbados',
|
|
1411
|
+
hotelCode: 'OSBA',
|
|
1412
|
+
latitude: '13.05242',
|
|
1413
|
+
longitude: '-59.50734',
|
|
1414
|
+
mainImageUrl: 'hotel-images2/1/d/7/1d74d890a8284a0fb89d7a490fc4cd9c.jpg',
|
|
1415
|
+
hotelType: 'LIVING',
|
|
1416
|
+
offerServicesForFilter: [],
|
|
1417
|
+
ratings: [
|
|
1418
|
+
{
|
|
1419
|
+
ratingSource: 'INTERNAL',
|
|
1420
|
+
rating: 723.0,
|
|
1421
|
+
},
|
|
1422
|
+
],
|
|
1423
|
+
hotelServices: [
|
|
1424
|
+
{
|
|
1425
|
+
supplierServiceName: 'Books/Library',
|
|
1426
|
+
groupName: 'Property Amenities',
|
|
1427
|
+
},
|
|
1428
|
+
{
|
|
1429
|
+
supplierServiceName: 'Car rentals',
|
|
1430
|
+
groupName: 'Property Amenities',
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
supplierServiceName: 'Currency exchange',
|
|
1434
|
+
groupName: 'Property Amenities',
|
|
1435
|
+
},
|
|
1436
|
+
{
|
|
1437
|
+
supplierServiceName: 'Doctor on call',
|
|
1438
|
+
groupName: 'Property Amenities',
|
|
1439
|
+
},
|
|
1440
|
+
{
|
|
1441
|
+
supplierServiceName: 'Tour/Ticket Assistance',
|
|
1442
|
+
groupName: 'Property Amenities',
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
supplierServiceName: 'Free Wi-Fi',
|
|
1446
|
+
groupName: 'Property Amenities',
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
supplierServiceName: 'Self-catering',
|
|
1450
|
+
groupName: 'Property Amenities',
|
|
1451
|
+
},
|
|
1452
|
+
{
|
|
1453
|
+
supplierServiceName: 'Cash',
|
|
1454
|
+
groupName: 'Property Amenities',
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
supplierServiceName: 'MasterCard Credit/Debit',
|
|
1458
|
+
groupName: 'Property Amenities',
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
supplierServiceName: 'Visa Credit/Debit',
|
|
1462
|
+
groupName: 'Property Amenities',
|
|
1463
|
+
},
|
|
1464
|
+
{
|
|
1465
|
+
supplierServiceName: 'Beach Loungers',
|
|
1466
|
+
groupName: 'Property Amenities',
|
|
1467
|
+
},
|
|
1468
|
+
{
|
|
1469
|
+
supplierServiceName: 'Golf Course nearby',
|
|
1470
|
+
groupName: 'Property Amenities',
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
supplierServiceName: 'Kitesurfing',
|
|
1474
|
+
groupName: 'Property Amenities',
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
supplierServiceName: 'Surfing',
|
|
1478
|
+
groupName: 'Property Amenities',
|
|
1479
|
+
},
|
|
1480
|
+
{
|
|
1481
|
+
supplierServiceName: 'Surfing lessons',
|
|
1482
|
+
groupName: 'Property Amenities',
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
supplierServiceName: 'Windsurfing',
|
|
1486
|
+
groupName: 'Property Amenities',
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
supplierServiceName: 'Free Public Space Wi-Fi',
|
|
1490
|
+
groupName: 'Property Amenities',
|
|
1491
|
+
},
|
|
1492
|
+
],
|
|
1493
|
+
hotelClassifications: [],
|
|
1494
|
+
type: 'Motel',
|
|
1495
|
+
typeOTAName: 'Motel',
|
|
1496
|
+
recommended: false,
|
|
1497
|
+
},
|
|
1498
|
+
roomOffers: [
|
|
1499
|
+
{
|
|
1500
|
+
offerKey: 'hWv55pEu5aXWWNie',
|
|
1501
|
+
cancellations: [
|
|
1502
|
+
{
|
|
1503
|
+
dateFrom: '2022-04-28 00:00',
|
|
1504
|
+
dateTo: '2022-05-05 23:59',
|
|
1505
|
+
price: {
|
|
1506
|
+
currency: 'USD',
|
|
1507
|
+
amount: 220.0,
|
|
1508
|
+
},
|
|
1509
|
+
convertedPrice: {
|
|
1510
|
+
currency: 'USD',
|
|
1511
|
+
amount: 220.0,
|
|
1512
|
+
},
|
|
1513
|
+
noShow: false,
|
|
1514
|
+
},
|
|
1515
|
+
{
|
|
1516
|
+
price: {
|
|
1517
|
+
currency: 'USD',
|
|
1518
|
+
amount: 220.0,
|
|
1519
|
+
},
|
|
1520
|
+
convertedPrice: {
|
|
1521
|
+
currency: 'USD',
|
|
1522
|
+
amount: 220.0,
|
|
1523
|
+
},
|
|
1524
|
+
noShow: true,
|
|
1525
|
+
},
|
|
1526
|
+
],
|
|
1527
|
+
taxesAndFeesIncluded: false,
|
|
1528
|
+
salesTerms: [
|
|
1529
|
+
{
|
|
1530
|
+
type: 'CLIENT',
|
|
1531
|
+
price: {
|
|
1532
|
+
currency: 'USD',
|
|
1533
|
+
amount: 228.76,
|
|
1534
|
+
taxesAndFees: [],
|
|
1535
|
+
},
|
|
1536
|
+
originalSupplierCurrency: 'USD',
|
|
1537
|
+
promoCodeApplied: false,
|
|
1538
|
+
priceBreakDowns: [
|
|
1539
|
+
{
|
|
1540
|
+
date: '2022-05-05',
|
|
1541
|
+
weekDayNumber: 4,
|
|
1542
|
+
weekDayName: 'Thursday',
|
|
1543
|
+
price: {
|
|
1544
|
+
currency: 'USD',
|
|
1545
|
+
amount: 125.0,
|
|
1546
|
+
originalCurrency: 'USD',
|
|
1547
|
+
originalAmount: 125.0,
|
|
1548
|
+
},
|
|
1549
|
+
},
|
|
1550
|
+
{
|
|
1551
|
+
date: '2022-05-06',
|
|
1552
|
+
weekDayNumber: 5,
|
|
1553
|
+
weekDayName: 'Friday',
|
|
1554
|
+
price: {
|
|
1555
|
+
currency: 'USD',
|
|
1556
|
+
amount: 75.0,
|
|
1557
|
+
originalCurrency: 'USD',
|
|
1558
|
+
originalAmount: 75.0,
|
|
1559
|
+
},
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
name: 'Room Rate Levy',
|
|
1563
|
+
price: {
|
|
1564
|
+
currency: 'USD',
|
|
1565
|
+
amount: 8.76,
|
|
1566
|
+
originalCurrency: 'USD',
|
|
1567
|
+
originalAmount: 8.76,
|
|
1568
|
+
},
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
name: 'VAT',
|
|
1572
|
+
price: {
|
|
1573
|
+
currency: 'USD',
|
|
1574
|
+
amount: 20.0,
|
|
1575
|
+
originalCurrency: 'USD',
|
|
1576
|
+
originalAmount: 20.0,
|
|
1577
|
+
},
|
|
1578
|
+
},
|
|
1579
|
+
],
|
|
1580
|
+
},
|
|
1581
|
+
],
|
|
1582
|
+
rph: '1',
|
|
1583
|
+
guests: {
|
|
1584
|
+
adults: 2,
|
|
1585
|
+
ages: [],
|
|
1586
|
+
},
|
|
1587
|
+
available: false,
|
|
1588
|
+
info: {
|
|
1589
|
+
roomType: 'Studio Apartment Garden View',
|
|
1590
|
+
roomTypeServiceId: 2131753,
|
|
1591
|
+
mealTypes: [
|
|
1592
|
+
{
|
|
1593
|
+
otaCode: 14,
|
|
1594
|
+
otaName: 'Room only\t',
|
|
1595
|
+
standardCode: 'RO',
|
|
1596
|
+
standardName: 'Room only',
|
|
1597
|
+
name: 'Room Only',
|
|
1598
|
+
id: 2131754,
|
|
1599
|
+
},
|
|
1600
|
+
],
|
|
1601
|
+
mealOptionsAvailable: false,
|
|
1602
|
+
supplierRoomTypeCode: 'SRTC_1920194',
|
|
1603
|
+
bedroomsQuantity: 1,
|
|
1604
|
+
bathroomsQuantity: 1,
|
|
1605
|
+
bedTypes: [
|
|
1606
|
+
{
|
|
1607
|
+
type: 'Queen Bed',
|
|
1608
|
+
quantity: 1,
|
|
1609
|
+
alternate: false,
|
|
1610
|
+
},
|
|
1611
|
+
],
|
|
1612
|
+
},
|
|
1613
|
+
nonRefundable: true,
|
|
1614
|
+
roomServices: [
|
|
1615
|
+
'Ceiling Fan',
|
|
1616
|
+
'Linens provided',
|
|
1617
|
+
'Limited housekeeping service',
|
|
1618
|
+
'Eco-friendly housekeeping',
|
|
1619
|
+
'Free Wi-Fi',
|
|
1620
|
+
'Hairdryer',
|
|
1621
|
+
'Garden view',
|
|
1622
|
+
'Telephone',
|
|
1623
|
+
'Stove',
|
|
1624
|
+
'Towels provided',
|
|
1625
|
+
'Refrigerator',
|
|
1626
|
+
'Non-smoking',
|
|
1627
|
+
],
|
|
1628
|
+
extraServices: true,
|
|
1629
|
+
packageOnly: false,
|
|
1630
|
+
hotelCode: 'OSBA',
|
|
1631
|
+
hotelSupplierCode: 'company.2131589',
|
|
1632
|
+
hotelSupplierId: 2131589,
|
|
1633
|
+
promoCode: false,
|
|
1634
|
+
hotDeal: false,
|
|
1635
|
+
percentDiscount: false,
|
|
1636
|
+
specialOffer: false,
|
|
1637
|
+
externalDiscount: false,
|
|
1638
|
+
freeNightsDiscount: false,
|
|
1639
|
+
cardGuarantee: false,
|
|
1640
|
+
onExtraBed: [],
|
|
1641
|
+
onWithoutPlace: [],
|
|
1642
|
+
},
|
|
1643
|
+
{
|
|
1644
|
+
offerKey: 'ORGahO7PCnFsRelS',
|
|
1645
|
+
cancellations: [
|
|
1646
|
+
{
|
|
1647
|
+
dateFrom: '2022-04-28 00:00',
|
|
1648
|
+
dateTo: '2022-05-05 23:59',
|
|
1649
|
+
price: {
|
|
1650
|
+
currency: 'USD',
|
|
1651
|
+
amount: 253.0,
|
|
1652
|
+
},
|
|
1653
|
+
convertedPrice: {
|
|
1654
|
+
currency: 'USD',
|
|
1655
|
+
amount: 253.0,
|
|
1656
|
+
},
|
|
1657
|
+
noShow: false,
|
|
1658
|
+
},
|
|
1659
|
+
{
|
|
1660
|
+
price: {
|
|
1661
|
+
currency: 'USD',
|
|
1662
|
+
amount: 253.0,
|
|
1663
|
+
},
|
|
1664
|
+
convertedPrice: {
|
|
1665
|
+
currency: 'USD',
|
|
1666
|
+
amount: 253.0,
|
|
1667
|
+
},
|
|
1668
|
+
noShow: true,
|
|
1669
|
+
},
|
|
1670
|
+
],
|
|
1671
|
+
taxesAndFeesIncluded: false,
|
|
1672
|
+
salesTerms: [
|
|
1673
|
+
{
|
|
1674
|
+
type: 'CLIENT',
|
|
1675
|
+
price: {
|
|
1676
|
+
currency: 'USD',
|
|
1677
|
+
amount: 261.76,
|
|
1678
|
+
taxesAndFees: [],
|
|
1679
|
+
},
|
|
1680
|
+
originalSupplierCurrency: 'USD',
|
|
1681
|
+
promoCodeApplied: false,
|
|
1682
|
+
priceBreakDowns: [
|
|
1683
|
+
{
|
|
1684
|
+
date: '2022-05-05',
|
|
1685
|
+
weekDayNumber: 4,
|
|
1686
|
+
weekDayName: 'Thursday',
|
|
1687
|
+
price: {
|
|
1688
|
+
currency: 'USD',
|
|
1689
|
+
amount: 140.0,
|
|
1690
|
+
originalCurrency: 'USD',
|
|
1691
|
+
originalAmount: 140.0,
|
|
1692
|
+
},
|
|
1693
|
+
},
|
|
1694
|
+
{
|
|
1695
|
+
date: '2022-05-06',
|
|
1696
|
+
weekDayNumber: 5,
|
|
1697
|
+
weekDayName: 'Friday',
|
|
1698
|
+
price: {
|
|
1699
|
+
currency: 'USD',
|
|
1700
|
+
amount: 90.0,
|
|
1701
|
+
originalCurrency: 'USD',
|
|
1702
|
+
originalAmount: 90.0,
|
|
1703
|
+
},
|
|
1704
|
+
},
|
|
1705
|
+
{
|
|
1706
|
+
name: 'Room Rate Levy',
|
|
1707
|
+
price: {
|
|
1708
|
+
currency: 'USD',
|
|
1709
|
+
amount: 8.76,
|
|
1710
|
+
originalCurrency: 'USD',
|
|
1711
|
+
originalAmount: 8.76,
|
|
1712
|
+
},
|
|
1713
|
+
},
|
|
1714
|
+
{
|
|
1715
|
+
name: 'VAT',
|
|
1716
|
+
price: {
|
|
1717
|
+
currency: 'USD',
|
|
1718
|
+
amount: 23.0,
|
|
1719
|
+
originalCurrency: 'USD',
|
|
1720
|
+
originalAmount: 23.0,
|
|
1721
|
+
},
|
|
1722
|
+
},
|
|
1723
|
+
],
|
|
1724
|
+
},
|
|
1725
|
+
],
|
|
1726
|
+
rph: '1',
|
|
1727
|
+
guests: {
|
|
1728
|
+
adults: 2,
|
|
1729
|
+
ages: [],
|
|
1730
|
+
},
|
|
1731
|
+
available: false,
|
|
1732
|
+
info: {
|
|
1733
|
+
roomType: 'Studio Apartment Ocean View',
|
|
1734
|
+
roomTypeServiceId: 2131752,
|
|
1735
|
+
mealTypes: [
|
|
1736
|
+
{
|
|
1737
|
+
otaCode: 14,
|
|
1738
|
+
otaName: 'Room only\t',
|
|
1739
|
+
standardCode: 'RO',
|
|
1740
|
+
standardName: 'Room only',
|
|
1741
|
+
name: 'Room Only',
|
|
1742
|
+
id: 2131754,
|
|
1743
|
+
},
|
|
1744
|
+
],
|
|
1745
|
+
mealOptionsAvailable: false,
|
|
1746
|
+
supplierRoomTypeCode: 'SRTC_1920195',
|
|
1747
|
+
bedroomsQuantity: 1,
|
|
1748
|
+
bathroomsQuantity: 1,
|
|
1749
|
+
bedTypes: [
|
|
1750
|
+
{
|
|
1751
|
+
type: 'Queen Bed',
|
|
1752
|
+
quantity: 1,
|
|
1753
|
+
alternate: false,
|
|
1754
|
+
},
|
|
1755
|
+
],
|
|
1756
|
+
},
|
|
1757
|
+
nonRefundable: true,
|
|
1758
|
+
roomServices: [
|
|
1759
|
+
'Ceiling Fan',
|
|
1760
|
+
'Linens provided',
|
|
1761
|
+
'Limited housekeeping service',
|
|
1762
|
+
'Eco-friendly housekeeping',
|
|
1763
|
+
'Free Wi-Fi',
|
|
1764
|
+
'Hairdryer',
|
|
1765
|
+
'Telephone',
|
|
1766
|
+
'Stove',
|
|
1767
|
+
'Towels provided',
|
|
1768
|
+
'Refrigerator',
|
|
1769
|
+
'Ocean view',
|
|
1770
|
+
'Non-smoking',
|
|
1771
|
+
],
|
|
1772
|
+
extraServices: true,
|
|
1773
|
+
packageOnly: false,
|
|
1774
|
+
hotelCode: 'OSBA',
|
|
1775
|
+
hotelSupplierCode: 'company.2131589',
|
|
1776
|
+
hotelSupplierId: 2131589,
|
|
1777
|
+
promoCode: false,
|
|
1778
|
+
hotDeal: false,
|
|
1779
|
+
percentDiscount: false,
|
|
1780
|
+
specialOffer: false,
|
|
1781
|
+
externalDiscount: false,
|
|
1782
|
+
freeNightsDiscount: false,
|
|
1783
|
+
cardGuarantee: false,
|
|
1784
|
+
onExtraBed: [],
|
|
1785
|
+
onWithoutPlace: [],
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
offerKey: 'bUNplPgkvmYPKSp0',
|
|
1789
|
+
cancellations: [
|
|
1790
|
+
{
|
|
1791
|
+
dateFrom: '2022-04-28 00:00',
|
|
1792
|
+
dateTo: '2022-05-05 23:59',
|
|
1793
|
+
price: {
|
|
1794
|
+
currency: 'USD',
|
|
1795
|
+
amount: 313.5,
|
|
1796
|
+
},
|
|
1797
|
+
convertedPrice: {
|
|
1798
|
+
currency: 'USD',
|
|
1799
|
+
amount: 313.5,
|
|
1800
|
+
},
|
|
1801
|
+
noShow: false,
|
|
1802
|
+
},
|
|
1803
|
+
{
|
|
1804
|
+
price: {
|
|
1805
|
+
currency: 'USD',
|
|
1806
|
+
amount: 313.5,
|
|
1807
|
+
},
|
|
1808
|
+
convertedPrice: {
|
|
1809
|
+
currency: 'USD',
|
|
1810
|
+
amount: 313.5,
|
|
1811
|
+
},
|
|
1812
|
+
noShow: true,
|
|
1813
|
+
},
|
|
1814
|
+
],
|
|
1815
|
+
taxesAndFeesIncluded: false,
|
|
1816
|
+
salesTerms: [
|
|
1817
|
+
{
|
|
1818
|
+
type: 'CLIENT',
|
|
1819
|
+
price: {
|
|
1820
|
+
currency: 'USD',
|
|
1821
|
+
amount: 322.26,
|
|
1822
|
+
taxesAndFees: [],
|
|
1823
|
+
},
|
|
1824
|
+
originalSupplierCurrency: 'USD',
|
|
1825
|
+
promoCodeApplied: false,
|
|
1826
|
+
priceBreakDowns: [
|
|
1827
|
+
{
|
|
1828
|
+
date: '2022-05-05',
|
|
1829
|
+
weekDayNumber: 4,
|
|
1830
|
+
weekDayName: 'Thursday',
|
|
1831
|
+
price: {
|
|
1832
|
+
currency: 'USD',
|
|
1833
|
+
amount: 175.0,
|
|
1834
|
+
originalCurrency: 'USD',
|
|
1835
|
+
originalAmount: 175.0,
|
|
1836
|
+
},
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
date: '2022-05-06',
|
|
1840
|
+
weekDayNumber: 5,
|
|
1841
|
+
weekDayName: 'Friday',
|
|
1842
|
+
price: {
|
|
1843
|
+
currency: 'USD',
|
|
1844
|
+
amount: 110.0,
|
|
1845
|
+
originalCurrency: 'USD',
|
|
1846
|
+
originalAmount: 110.0,
|
|
1847
|
+
},
|
|
1848
|
+
},
|
|
1849
|
+
{
|
|
1850
|
+
name: 'Room Rate Levy',
|
|
1851
|
+
price: {
|
|
1852
|
+
currency: 'USD',
|
|
1853
|
+
amount: 8.76,
|
|
1854
|
+
originalCurrency: 'USD',
|
|
1855
|
+
originalAmount: 8.76,
|
|
1856
|
+
},
|
|
1857
|
+
},
|
|
1858
|
+
{
|
|
1859
|
+
name: 'VAT',
|
|
1860
|
+
price: {
|
|
1861
|
+
currency: 'USD',
|
|
1862
|
+
amount: 28.5,
|
|
1863
|
+
originalCurrency: 'USD',
|
|
1864
|
+
originalAmount: 28.5,
|
|
1865
|
+
},
|
|
1866
|
+
},
|
|
1867
|
+
],
|
|
1868
|
+
},
|
|
1869
|
+
],
|
|
1870
|
+
rph: '1',
|
|
1871
|
+
guests: {
|
|
1872
|
+
adults: 2,
|
|
1873
|
+
ages: [],
|
|
1874
|
+
},
|
|
1875
|
+
available: false,
|
|
1876
|
+
info: {
|
|
1877
|
+
roomType: 'One Bedroom Apartment',
|
|
1878
|
+
roomTypeServiceId: 2131750,
|
|
1879
|
+
mealTypes: [
|
|
1880
|
+
{
|
|
1881
|
+
otaCode: 14,
|
|
1882
|
+
otaName: 'Room only\t',
|
|
1883
|
+
standardCode: 'RO',
|
|
1884
|
+
standardName: 'Room only',
|
|
1885
|
+
name: 'Room Only',
|
|
1886
|
+
id: 2131754,
|
|
1887
|
+
},
|
|
1888
|
+
],
|
|
1889
|
+
mealOptionsAvailable: false,
|
|
1890
|
+
supplierRoomTypeCode: 'SRTC_1920196',
|
|
1891
|
+
bedroomsQuantity: 1,
|
|
1892
|
+
bathroomsQuantity: 1,
|
|
1893
|
+
bedTypes: [
|
|
1894
|
+
{
|
|
1895
|
+
type: 'Queen Bed',
|
|
1896
|
+
quantity: 1,
|
|
1897
|
+
alternate: false,
|
|
1898
|
+
},
|
|
1899
|
+
{
|
|
1900
|
+
type: 'Double Bed',
|
|
1901
|
+
quantity: 1,
|
|
1902
|
+
alternate: false,
|
|
1903
|
+
},
|
|
1904
|
+
],
|
|
1905
|
+
},
|
|
1906
|
+
nonRefundable: true,
|
|
1907
|
+
roomServices: [
|
|
1908
|
+
'Ceiling Fan',
|
|
1909
|
+
'Linens provided',
|
|
1910
|
+
'Limited housekeeping service',
|
|
1911
|
+
'Eco-friendly housekeeping',
|
|
1912
|
+
'Free Wi-Fi',
|
|
1913
|
+
'Hairdryer',
|
|
1914
|
+
'Telephone',
|
|
1915
|
+
'Stove',
|
|
1916
|
+
'Towels provided',
|
|
1917
|
+
'Refrigerator',
|
|
1918
|
+
'Ocean view',
|
|
1919
|
+
'Non-smoking',
|
|
1920
|
+
],
|
|
1921
|
+
extraServices: true,
|
|
1922
|
+
packageOnly: false,
|
|
1923
|
+
hotelCode: 'OSBA',
|
|
1924
|
+
hotelSupplierCode: 'company.2131589',
|
|
1925
|
+
hotelSupplierId: 2131589,
|
|
1926
|
+
promoCode: false,
|
|
1927
|
+
hotDeal: false,
|
|
1928
|
+
percentDiscount: false,
|
|
1929
|
+
specialOffer: false,
|
|
1930
|
+
externalDiscount: false,
|
|
1931
|
+
freeNightsDiscount: false,
|
|
1932
|
+
cardGuarantee: false,
|
|
1933
|
+
onExtraBed: [],
|
|
1934
|
+
onWithoutPlace: [],
|
|
1935
|
+
},
|
|
1936
|
+
{
|
|
1937
|
+
offerKey: 'PC6q8R5b3hQF7HPt',
|
|
1938
|
+
cancellations: [
|
|
1939
|
+
{
|
|
1940
|
+
dateFrom: '2022-04-28 00:00',
|
|
1941
|
+
dateTo: '2022-05-05 23:59',
|
|
1942
|
+
price: {
|
|
1943
|
+
currency: 'USD',
|
|
1944
|
+
amount: 412.5,
|
|
1945
|
+
},
|
|
1946
|
+
convertedPrice: {
|
|
1947
|
+
currency: 'USD',
|
|
1948
|
+
amount: 412.5,
|
|
1949
|
+
},
|
|
1950
|
+
noShow: false,
|
|
1951
|
+
},
|
|
1952
|
+
{
|
|
1953
|
+
price: {
|
|
1954
|
+
currency: 'USD',
|
|
1955
|
+
amount: 412.5,
|
|
1956
|
+
},
|
|
1957
|
+
convertedPrice: {
|
|
1958
|
+
currency: 'USD',
|
|
1959
|
+
amount: 412.5,
|
|
1960
|
+
},
|
|
1961
|
+
noShow: true,
|
|
1962
|
+
},
|
|
1963
|
+
],
|
|
1964
|
+
taxesAndFeesIncluded: false,
|
|
1965
|
+
salesTerms: [
|
|
1966
|
+
{
|
|
1967
|
+
type: 'CLIENT',
|
|
1968
|
+
price: {
|
|
1969
|
+
currency: 'USD',
|
|
1970
|
+
amount: 430.02,
|
|
1971
|
+
taxesAndFees: [],
|
|
1972
|
+
},
|
|
1973
|
+
originalSupplierCurrency: 'USD',
|
|
1974
|
+
promoCodeApplied: false,
|
|
1975
|
+
priceBreakDowns: [
|
|
1976
|
+
{
|
|
1977
|
+
date: '2022-05-05',
|
|
1978
|
+
weekDayNumber: 4,
|
|
1979
|
+
weekDayName: 'Thursday',
|
|
1980
|
+
price: {
|
|
1981
|
+
currency: 'USD',
|
|
1982
|
+
amount: 225.0,
|
|
1983
|
+
originalCurrency: 'USD',
|
|
1984
|
+
originalAmount: 225.0,
|
|
1985
|
+
},
|
|
1986
|
+
},
|
|
1987
|
+
{
|
|
1988
|
+
date: '2022-05-06',
|
|
1989
|
+
weekDayNumber: 5,
|
|
1990
|
+
weekDayName: 'Friday',
|
|
1991
|
+
price: {
|
|
1992
|
+
currency: 'USD',
|
|
1993
|
+
amount: 150.0,
|
|
1994
|
+
originalCurrency: 'USD',
|
|
1995
|
+
originalAmount: 150.0,
|
|
1996
|
+
},
|
|
1997
|
+
},
|
|
1998
|
+
{
|
|
1999
|
+
name: 'Room Rate Levy',
|
|
2000
|
+
price: {
|
|
2001
|
+
currency: 'USD',
|
|
2002
|
+
amount: 17.52,
|
|
2003
|
+
originalCurrency: 'USD',
|
|
2004
|
+
originalAmount: 17.52,
|
|
2005
|
+
},
|
|
2006
|
+
},
|
|
2007
|
+
{
|
|
2008
|
+
name: 'VAT',
|
|
2009
|
+
price: {
|
|
2010
|
+
currency: 'USD',
|
|
2011
|
+
amount: 37.5,
|
|
2012
|
+
originalCurrency: 'USD',
|
|
2013
|
+
originalAmount: 37.5,
|
|
2014
|
+
},
|
|
2015
|
+
},
|
|
2016
|
+
],
|
|
2017
|
+
},
|
|
2018
|
+
],
|
|
2019
|
+
rph: '1',
|
|
2020
|
+
guests: {
|
|
2021
|
+
adults: 2,
|
|
2022
|
+
ages: [],
|
|
2023
|
+
},
|
|
2024
|
+
available: false,
|
|
2025
|
+
info: {
|
|
2026
|
+
roomType: 'Two Bedroom Apartment',
|
|
2027
|
+
roomTypeServiceId: 2131748,
|
|
2028
|
+
mealTypes: [
|
|
2029
|
+
{
|
|
2030
|
+
otaCode: 14,
|
|
2031
|
+
otaName: 'Room only\t',
|
|
2032
|
+
standardCode: 'RO',
|
|
2033
|
+
standardName: 'Room only',
|
|
2034
|
+
name: 'Room Only',
|
|
2035
|
+
id: 2131754,
|
|
2036
|
+
},
|
|
2037
|
+
],
|
|
2038
|
+
mealOptionsAvailable: false,
|
|
2039
|
+
supplierRoomTypeCode: 'SRTC_1920197',
|
|
2040
|
+
bedroomsQuantity: 2,
|
|
2041
|
+
bathroomsQuantity: 2,
|
|
2042
|
+
bedTypes: [
|
|
2043
|
+
{
|
|
2044
|
+
type: 'Queen Bed',
|
|
2045
|
+
quantity: 2,
|
|
2046
|
+
alternate: false,
|
|
2047
|
+
},
|
|
2048
|
+
{
|
|
2049
|
+
type: 'Sofa Bed Double',
|
|
2050
|
+
quantity: 1,
|
|
2051
|
+
alternate: false,
|
|
2052
|
+
},
|
|
2053
|
+
],
|
|
2054
|
+
},
|
|
2055
|
+
nonRefundable: true,
|
|
2056
|
+
roomServices: [
|
|
2057
|
+
'Ceiling Fan',
|
|
2058
|
+
'Linens provided',
|
|
2059
|
+
'Limited housekeeping service',
|
|
2060
|
+
'Eco-friendly housekeeping',
|
|
2061
|
+
'Free Wi-Fi',
|
|
2062
|
+
'Hairdryer',
|
|
2063
|
+
'Telephone',
|
|
2064
|
+
'Stove',
|
|
2065
|
+
'Towels provided',
|
|
2066
|
+
'Refrigerator',
|
|
2067
|
+
'Ocean view',
|
|
2068
|
+
'Non-smoking',
|
|
2069
|
+
],
|
|
2070
|
+
extraServices: true,
|
|
2071
|
+
packageOnly: false,
|
|
2072
|
+
hotelCode: 'OSBA',
|
|
2073
|
+
hotelSupplierCode: 'company.2131589',
|
|
2074
|
+
hotelSupplierId: 2131589,
|
|
2075
|
+
promoCode: false,
|
|
2076
|
+
hotDeal: false,
|
|
2077
|
+
percentDiscount: false,
|
|
2078
|
+
specialOffer: false,
|
|
2079
|
+
externalDiscount: false,
|
|
2080
|
+
freeNightsDiscount: false,
|
|
2081
|
+
cardGuarantee: false,
|
|
2082
|
+
onExtraBed: [],
|
|
2083
|
+
onWithoutPlace: [],
|
|
2084
|
+
},
|
|
2085
|
+
],
|
|
2086
|
+
bookAllowed: false,
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
info: {
|
|
2090
|
+
name: 'Barbados Beach Club - All Inclusive',
|
|
2091
|
+
address: 'Maxwell Coast Road, Christ Church',
|
|
2092
|
+
category: 3,
|
|
2093
|
+
supplierCode: 'company.2130149',
|
|
2094
|
+
cityId: 166990,
|
|
2095
|
+
cityCode: '166990',
|
|
2096
|
+
cityName: 'Maxwell',
|
|
2097
|
+
countryName: 'Barbados',
|
|
2098
|
+
hotelCode: 'BBC',
|
|
2099
|
+
latitude: '13.06594',
|
|
2100
|
+
longitude: '-59.55836',
|
|
2101
|
+
mainImageUrl: 'hotel-images2/9/1/5/9158f07aecbc477db11080604962b48b.jpg',
|
|
2102
|
+
hotelType: 'LIVING',
|
|
2103
|
+
offerServicesForFilter: [],
|
|
2104
|
+
ratings: [
|
|
2105
|
+
{
|
|
2106
|
+
ratingSource: 'INTERNAL',
|
|
2107
|
+
rating: 623.0,
|
|
2108
|
+
},
|
|
2109
|
+
{
|
|
2110
|
+
ratingSource: 'TRIPADVISOR',
|
|
2111
|
+
rating: 0.0,
|
|
2112
|
+
reviewsURL: 'https://www.tripadvisor.com/Hotel_Review-g147266-d150711-Reviews-Barbados_Beach_Club-Christ_Church_Parish_Barbados.html',
|
|
2113
|
+
},
|
|
2114
|
+
],
|
|
2115
|
+
hotelServices: [
|
|
2116
|
+
{
|
|
2117
|
+
supplierServiceName: 'Car park',
|
|
2118
|
+
groupName: 'Property Amenities',
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
supplierServiceName: 'Concierge service',
|
|
2122
|
+
groupName: 'Property Amenities',
|
|
2123
|
+
},
|
|
2124
|
+
{
|
|
2125
|
+
supplierServiceName: 'Currency exchange',
|
|
2126
|
+
groupName: 'Property Amenities',
|
|
2127
|
+
},
|
|
2128
|
+
{
|
|
2129
|
+
supplierServiceName: 'Doctor on call',
|
|
2130
|
+
groupName: 'Property Amenities',
|
|
2131
|
+
},
|
|
2132
|
+
{
|
|
2133
|
+
supplierServiceName: 'Dry cleaning service',
|
|
2134
|
+
groupName: 'Property Amenities',
|
|
2135
|
+
},
|
|
2136
|
+
{
|
|
2137
|
+
supplierServiceName: 'Laundry Service',
|
|
2138
|
+
groupName: 'Property Amenities',
|
|
2139
|
+
},
|
|
2140
|
+
{
|
|
2141
|
+
supplierServiceName: 'Live Entertainment',
|
|
2142
|
+
groupName: 'Property Amenities',
|
|
2143
|
+
},
|
|
2144
|
+
{
|
|
2145
|
+
supplierServiceName: 'Tour/Ticket Assistance',
|
|
2146
|
+
groupName: 'Property Amenities',
|
|
2147
|
+
},
|
|
2148
|
+
{
|
|
2149
|
+
supplierServiceName: 'Conference Equipment',
|
|
2150
|
+
groupName: 'Property Amenities',
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
supplierServiceName: 'Free Wi-Fi',
|
|
2154
|
+
groupName: 'Property Amenities',
|
|
2155
|
+
},
|
|
2156
|
+
{
|
|
2157
|
+
supplierServiceName: 'Meeting Room',
|
|
2158
|
+
groupName: 'Property Amenities',
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
supplierServiceName: 'Connecting/Adjoining Rooms',
|
|
2162
|
+
groupName: 'Property Amenities',
|
|
2163
|
+
},
|
|
2164
|
+
{
|
|
2165
|
+
supplierServiceName: 'Cots/Cribs',
|
|
2166
|
+
groupName: 'Property Amenities',
|
|
2167
|
+
},
|
|
2168
|
+
{
|
|
2169
|
+
supplierServiceName: 'Bar',
|
|
2170
|
+
groupName: 'Property Amenities',
|
|
2171
|
+
},
|
|
2172
|
+
{
|
|
2173
|
+
supplierServiceName: 'Buffet',
|
|
2174
|
+
groupName: 'Property Amenities',
|
|
2175
|
+
},
|
|
2176
|
+
{
|
|
2177
|
+
supplierServiceName: 'Free Managers Reception',
|
|
2178
|
+
groupName: 'Property Amenities',
|
|
2179
|
+
},
|
|
2180
|
+
{
|
|
2181
|
+
supplierServiceName: 'American Express',
|
|
2182
|
+
groupName: 'Property Amenities',
|
|
2183
|
+
},
|
|
2184
|
+
{
|
|
2185
|
+
supplierServiceName: 'Cash',
|
|
2186
|
+
groupName: 'Property Amenities',
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
supplierServiceName: 'MasterCard Credit/Debit',
|
|
2190
|
+
groupName: 'Property Amenities',
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
supplierServiceName: 'Visa Credit/Debit',
|
|
2194
|
+
groupName: 'Property Amenities',
|
|
2195
|
+
},
|
|
2196
|
+
{
|
|
2197
|
+
supplierServiceName: 'Beach',
|
|
2198
|
+
groupName: 'Property Amenities',
|
|
2199
|
+
},
|
|
2200
|
+
{
|
|
2201
|
+
supplierServiceName: 'Beach Bar',
|
|
2202
|
+
groupName: 'Property Amenities',
|
|
2203
|
+
},
|
|
2204
|
+
{
|
|
2205
|
+
supplierServiceName: 'Beach Loungers',
|
|
2206
|
+
groupName: 'Property Amenities',
|
|
2207
|
+
},
|
|
2208
|
+
{
|
|
2209
|
+
supplierServiceName: 'Gift Shop',
|
|
2210
|
+
groupName: 'Property Amenities',
|
|
2211
|
+
},
|
|
2212
|
+
{
|
|
2213
|
+
supplierServiceName: 'Golf Course nearby',
|
|
2214
|
+
groupName: 'Property Amenities',
|
|
2215
|
+
},
|
|
2216
|
+
{
|
|
2217
|
+
supplierServiceName: 'Golf Driving range nearby',
|
|
2218
|
+
groupName: 'Property Amenities',
|
|
2219
|
+
},
|
|
2220
|
+
{
|
|
2221
|
+
supplierServiceName: 'Non-motorized watersports',
|
|
2222
|
+
groupName: 'Property Amenities',
|
|
2223
|
+
},
|
|
2224
|
+
{
|
|
2225
|
+
supplierServiceName: 'Swimming',
|
|
2226
|
+
groupName: 'Property Amenities',
|
|
2227
|
+
},
|
|
2228
|
+
{
|
|
2229
|
+
supplierServiceName: 'Tennis on site',
|
|
2230
|
+
groupName: 'Property Amenities',
|
|
2231
|
+
},
|
|
2232
|
+
{
|
|
2233
|
+
supplierServiceName: 'Parking',
|
|
2234
|
+
groupName: 'Accessibility',
|
|
2235
|
+
},
|
|
2236
|
+
{
|
|
2237
|
+
supplierServiceName: 'Pathways',
|
|
2238
|
+
groupName: 'Accessibility',
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
supplierServiceName: 'Reception',
|
|
2242
|
+
groupName: 'Accessibility',
|
|
2243
|
+
},
|
|
2244
|
+
{
|
|
2245
|
+
supplierServiceName: 'Restaurant',
|
|
2246
|
+
groupName: 'Accessibility',
|
|
2247
|
+
},
|
|
2248
|
+
{
|
|
2249
|
+
supplierServiceName: 'Wheelchair Accessibility',
|
|
2250
|
+
groupName: 'Accessibility',
|
|
2251
|
+
},
|
|
2252
|
+
{
|
|
2253
|
+
supplierServiceName: 'Assistive Listening devices available',
|
|
2254
|
+
groupName: 'Accessibility',
|
|
2255
|
+
},
|
|
2256
|
+
{
|
|
2257
|
+
supplierServiceName: 'Roll-in shower available on request',
|
|
2258
|
+
groupName: 'Accessibility',
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
supplierServiceName: 'Free Public Space Wi-Fi',
|
|
2262
|
+
groupName: 'Property Amenities',
|
|
2263
|
+
},
|
|
2264
|
+
],
|
|
2265
|
+
hotelClassifications: [],
|
|
2266
|
+
type: 'All-Inclusive resort',
|
|
2267
|
+
typeOTAName: 'All-Inclusive resort',
|
|
2268
|
+
recommended: false,
|
|
2269
|
+
},
|
|
2270
|
+
roomOffers: [
|
|
2271
|
+
{
|
|
2272
|
+
offerKey: 'YIVTItwn3dihKu6x',
|
|
2273
|
+
cancellations: [
|
|
2274
|
+
{
|
|
2275
|
+
dateFrom: '2022-05-04 00:00',
|
|
2276
|
+
dateTo: '2022-05-05 23:59',
|
|
2277
|
+
price: {
|
|
2278
|
+
currency: 'USD',
|
|
2279
|
+
amount: 935.3,
|
|
2280
|
+
},
|
|
2281
|
+
convertedPrice: {
|
|
2282
|
+
currency: 'USD',
|
|
2283
|
+
amount: 935.3,
|
|
2284
|
+
},
|
|
2285
|
+
noShow: false,
|
|
2286
|
+
},
|
|
2287
|
+
{
|
|
2288
|
+
price: {
|
|
2289
|
+
currency: 'USD',
|
|
2290
|
+
amount: 935.3,
|
|
2291
|
+
},
|
|
2292
|
+
convertedPrice: {
|
|
2293
|
+
currency: 'USD',
|
|
2294
|
+
amount: 935.3,
|
|
2295
|
+
},
|
|
2296
|
+
noShow: true,
|
|
2297
|
+
},
|
|
2298
|
+
],
|
|
2299
|
+
taxesAndFeesIncluded: false,
|
|
2300
|
+
salesTerms: [
|
|
2301
|
+
{
|
|
2302
|
+
type: 'CLIENT',
|
|
2303
|
+
price: {
|
|
2304
|
+
currency: 'USD',
|
|
2305
|
+
amount: 944.06,
|
|
2306
|
+
taxesAndFees: [],
|
|
2307
|
+
},
|
|
2308
|
+
originalSupplierCurrency: 'USD',
|
|
2309
|
+
promoCodeApplied: false,
|
|
2310
|
+
priceBreakDowns: [
|
|
2311
|
+
{
|
|
2312
|
+
date: '2022-05-05',
|
|
2313
|
+
weekDayNumber: 4,
|
|
2314
|
+
weekDayName: 'Thursday',
|
|
2315
|
+
price: {
|
|
2316
|
+
currency: 'USD',
|
|
2317
|
+
amount: 398.0,
|
|
2318
|
+
originalCurrency: 'USD',
|
|
2319
|
+
originalAmount: 398.0,
|
|
2320
|
+
},
|
|
2321
|
+
},
|
|
2322
|
+
{
|
|
2323
|
+
date: '2022-05-06',
|
|
2324
|
+
weekDayNumber: 5,
|
|
2325
|
+
weekDayName: 'Friday',
|
|
2326
|
+
price: {
|
|
2327
|
+
currency: 'USD',
|
|
2328
|
+
amount: 398.0,
|
|
2329
|
+
originalCurrency: 'USD',
|
|
2330
|
+
originalAmount: 398.0,
|
|
2331
|
+
},
|
|
2332
|
+
},
|
|
2333
|
+
{
|
|
2334
|
+
name: 'Service Charge',
|
|
2335
|
+
price: {
|
|
2336
|
+
currency: 'USD',
|
|
2337
|
+
amount: 59.7,
|
|
2338
|
+
originalCurrency: 'USD',
|
|
2339
|
+
originalAmount: 59.7,
|
|
2340
|
+
},
|
|
2341
|
+
},
|
|
2342
|
+
{
|
|
2343
|
+
name: 'VAT',
|
|
2344
|
+
price: {
|
|
2345
|
+
currency: 'USD',
|
|
2346
|
+
amount: 79.6,
|
|
2347
|
+
originalCurrency: 'USD',
|
|
2348
|
+
originalAmount: 79.6,
|
|
2349
|
+
},
|
|
2350
|
+
},
|
|
2351
|
+
{
|
|
2352
|
+
name: 'Room Rate Levy',
|
|
2353
|
+
price: {
|
|
2354
|
+
currency: 'USD',
|
|
2355
|
+
amount: 8.76,
|
|
2356
|
+
originalCurrency: 'USD',
|
|
2357
|
+
originalAmount: 8.76,
|
|
2358
|
+
},
|
|
2359
|
+
},
|
|
2360
|
+
],
|
|
2361
|
+
},
|
|
2362
|
+
],
|
|
2363
|
+
rph: '1',
|
|
2364
|
+
guests: {
|
|
2365
|
+
adults: 2,
|
|
2366
|
+
ages: [],
|
|
2367
|
+
},
|
|
2368
|
+
available: false,
|
|
2369
|
+
info: {
|
|
2370
|
+
roomType: 'Deluxe Room',
|
|
2371
|
+
roomTypeServiceId: 2130311,
|
|
2372
|
+
mealTypes: [
|
|
2373
|
+
{
|
|
2374
|
+
otaCode: 1,
|
|
2375
|
+
otaName: 'All inclusive',
|
|
2376
|
+
standardCode: 'AI',
|
|
2377
|
+
standardName: 'All inclusive',
|
|
2378
|
+
name: 'All Inclusive',
|
|
2379
|
+
id: 2130312,
|
|
2380
|
+
},
|
|
2381
|
+
],
|
|
2382
|
+
mealOptionsAvailable: false,
|
|
2383
|
+
supplierRoomTypeCode: 'SRTC_1920191',
|
|
2384
|
+
bedroomsQuantity: 1,
|
|
2385
|
+
bathroomsQuantity: 1,
|
|
2386
|
+
bedTypes: [
|
|
2387
|
+
{
|
|
2388
|
+
type: 'Double Bed',
|
|
2389
|
+
quantity: 2,
|
|
2390
|
+
alternate: false,
|
|
2391
|
+
},
|
|
2392
|
+
],
|
|
2393
|
+
},
|
|
2394
|
+
nonRefundable: true,
|
|
2395
|
+
roomServices: [
|
|
2396
|
+
'Bathroom Amenities',
|
|
2397
|
+
'Balcony/Terrace',
|
|
2398
|
+
'Alarm Clock',
|
|
2399
|
+
'Cable/Satellite television',
|
|
2400
|
+
'Air conditioning',
|
|
2401
|
+
'Adjoining Room',
|
|
2402
|
+
'Linens provided',
|
|
2403
|
+
'Mini-refrigerator',
|
|
2404
|
+
'In-room safe',
|
|
2405
|
+
'Free Wi-Fi',
|
|
2406
|
+
'Hairdryer',
|
|
2407
|
+
'Daily housekeeping service',
|
|
2408
|
+
'Telephone',
|
|
2409
|
+
'Tub/shower combination',
|
|
2410
|
+
'Towels provided',
|
|
2411
|
+
'Television',
|
|
2412
|
+
'Ocean view',
|
|
2413
|
+
'Non-smoking',
|
|
2414
|
+
'Pool view',
|
|
2415
|
+
],
|
|
2416
|
+
extraServices: true,
|
|
2417
|
+
packageOnly: false,
|
|
2418
|
+
hotelCode: 'BBC',
|
|
2419
|
+
hotelSupplierCode: 'company.2130149',
|
|
2420
|
+
hotelSupplierId: 2130149,
|
|
2421
|
+
promoCode: false,
|
|
2422
|
+
hotDeal: false,
|
|
2423
|
+
percentDiscount: false,
|
|
2424
|
+
specialOffer: false,
|
|
2425
|
+
externalDiscount: false,
|
|
2426
|
+
freeNightsDiscount: false,
|
|
2427
|
+
cardGuarantee: false,
|
|
2428
|
+
onExtraBed: [],
|
|
2429
|
+
onWithoutPlace: [],
|
|
2430
|
+
},
|
|
2431
|
+
{
|
|
2432
|
+
offerKey: 'gUKwQKG57hWcTddM',
|
|
2433
|
+
cancellations: [
|
|
2434
|
+
{
|
|
2435
|
+
dateFrom: '2022-05-04 00:00',
|
|
2436
|
+
dateTo: '2022-05-05 23:59',
|
|
2437
|
+
price: {
|
|
2438
|
+
currency: 'USD',
|
|
2439
|
+
amount: 968.2,
|
|
2440
|
+
},
|
|
2441
|
+
convertedPrice: {
|
|
2442
|
+
currency: 'USD',
|
|
2443
|
+
amount: 968.2,
|
|
2444
|
+
},
|
|
2445
|
+
noShow: false,
|
|
2446
|
+
},
|
|
2447
|
+
{
|
|
2448
|
+
price: {
|
|
2449
|
+
currency: 'USD',
|
|
2450
|
+
amount: 968.2,
|
|
2451
|
+
},
|
|
2452
|
+
convertedPrice: {
|
|
2453
|
+
currency: 'USD',
|
|
2454
|
+
amount: 968.2,
|
|
2455
|
+
},
|
|
2456
|
+
noShow: true,
|
|
2457
|
+
},
|
|
2458
|
+
],
|
|
2459
|
+
taxesAndFeesIncluded: false,
|
|
2460
|
+
salesTerms: [
|
|
2461
|
+
{
|
|
2462
|
+
type: 'CLIENT',
|
|
2463
|
+
price: {
|
|
2464
|
+
currency: 'USD',
|
|
2465
|
+
amount: 976.96,
|
|
2466
|
+
taxesAndFees: [],
|
|
2467
|
+
},
|
|
2468
|
+
originalSupplierCurrency: 'USD',
|
|
2469
|
+
promoCodeApplied: false,
|
|
2470
|
+
priceBreakDowns: [
|
|
2471
|
+
{
|
|
2472
|
+
date: '2022-05-05',
|
|
2473
|
+
weekDayNumber: 4,
|
|
2474
|
+
weekDayName: 'Thursday',
|
|
2475
|
+
price: {
|
|
2476
|
+
currency: 'USD',
|
|
2477
|
+
amount: 412.0,
|
|
2478
|
+
originalCurrency: 'USD',
|
|
2479
|
+
originalAmount: 412.0,
|
|
2480
|
+
},
|
|
2481
|
+
},
|
|
2482
|
+
{
|
|
2483
|
+
date: '2022-05-06',
|
|
2484
|
+
weekDayNumber: 5,
|
|
2485
|
+
weekDayName: 'Friday',
|
|
2486
|
+
price: {
|
|
2487
|
+
currency: 'USD',
|
|
2488
|
+
amount: 412.0,
|
|
2489
|
+
originalCurrency: 'USD',
|
|
2490
|
+
originalAmount: 412.0,
|
|
2491
|
+
},
|
|
2492
|
+
},
|
|
2493
|
+
{
|
|
2494
|
+
name: 'Service Charge',
|
|
2495
|
+
price: {
|
|
2496
|
+
currency: 'USD',
|
|
2497
|
+
amount: 61.8,
|
|
2498
|
+
originalCurrency: 'USD',
|
|
2499
|
+
originalAmount: 61.8,
|
|
2500
|
+
},
|
|
2501
|
+
},
|
|
2502
|
+
{
|
|
2503
|
+
name: 'VAT',
|
|
2504
|
+
price: {
|
|
2505
|
+
currency: 'USD',
|
|
2506
|
+
amount: 82.4,
|
|
2507
|
+
originalCurrency: 'USD',
|
|
2508
|
+
originalAmount: 82.4,
|
|
2509
|
+
},
|
|
2510
|
+
},
|
|
2511
|
+
{
|
|
2512
|
+
name: 'Room Rate Levy',
|
|
2513
|
+
price: {
|
|
2514
|
+
currency: 'USD',
|
|
2515
|
+
amount: 8.76,
|
|
2516
|
+
originalCurrency: 'USD',
|
|
2517
|
+
originalAmount: 8.76,
|
|
2518
|
+
},
|
|
2519
|
+
},
|
|
2520
|
+
],
|
|
2521
|
+
},
|
|
2522
|
+
],
|
|
2523
|
+
rph: '1',
|
|
2524
|
+
guests: {
|
|
2525
|
+
adults: 2,
|
|
2526
|
+
ages: [],
|
|
2527
|
+
},
|
|
2528
|
+
available: false,
|
|
2529
|
+
info: {
|
|
2530
|
+
roomType: 'Super Deluxe Room',
|
|
2531
|
+
roomTypeServiceId: 2130310,
|
|
2532
|
+
mealTypes: [
|
|
2533
|
+
{
|
|
2534
|
+
otaCode: 1,
|
|
2535
|
+
otaName: 'All inclusive',
|
|
2536
|
+
standardCode: 'AI',
|
|
2537
|
+
standardName: 'All inclusive',
|
|
2538
|
+
name: 'All Inclusive',
|
|
2539
|
+
id: 2130312,
|
|
2540
|
+
},
|
|
2541
|
+
],
|
|
2542
|
+
mealOptionsAvailable: false,
|
|
2543
|
+
supplierRoomTypeCode: 'SRTC_1920192',
|
|
2544
|
+
bedroomsQuantity: 1,
|
|
2545
|
+
bathroomsQuantity: 1,
|
|
2546
|
+
bedTypes: [
|
|
2547
|
+
{
|
|
2548
|
+
type: 'King Bed',
|
|
2549
|
+
quantity: 1,
|
|
2550
|
+
alternate: false,
|
|
2551
|
+
},
|
|
2552
|
+
{
|
|
2553
|
+
type: 'Queen Bed',
|
|
2554
|
+
quantity: 1,
|
|
2555
|
+
alternate: true,
|
|
2556
|
+
},
|
|
2557
|
+
],
|
|
2558
|
+
},
|
|
2559
|
+
nonRefundable: true,
|
|
2560
|
+
roomServices: [
|
|
2561
|
+
'Bathroom Amenities',
|
|
2562
|
+
'Balcony/Terrace',
|
|
2563
|
+
'Alarm Clock',
|
|
2564
|
+
'Cable/Satellite television',
|
|
2565
|
+
'Air conditioning',
|
|
2566
|
+
'Adjoining Room',
|
|
2567
|
+
'Linens provided',
|
|
2568
|
+
'Mini-refrigerator',
|
|
2569
|
+
'In-room safe',
|
|
2570
|
+
'Free Wi-Fi',
|
|
2571
|
+
'Hairdryer',
|
|
2572
|
+
'Daily housekeeping service',
|
|
2573
|
+
'Telephone',
|
|
2574
|
+
'Tub/shower combination',
|
|
2575
|
+
'Towels provided',
|
|
2576
|
+
'Television',
|
|
2577
|
+
'Ocean view',
|
|
2578
|
+
'Non-smoking',
|
|
2579
|
+
'Pool view',
|
|
2580
|
+
],
|
|
2581
|
+
extraServices: true,
|
|
2582
|
+
packageOnly: false,
|
|
2583
|
+
hotelCode: 'BBC',
|
|
2584
|
+
hotelSupplierCode: 'company.2130149',
|
|
2585
|
+
hotelSupplierId: 2130149,
|
|
2586
|
+
promoCode: false,
|
|
2587
|
+
hotDeal: false,
|
|
2588
|
+
percentDiscount: false,
|
|
2589
|
+
specialOffer: false,
|
|
2590
|
+
externalDiscount: false,
|
|
2591
|
+
freeNightsDiscount: false,
|
|
2592
|
+
cardGuarantee: false,
|
|
2593
|
+
onExtraBed: [],
|
|
2594
|
+
onWithoutPlace: [],
|
|
2595
|
+
},
|
|
2596
|
+
{
|
|
2597
|
+
offerKey: 'AZBfhX3II7fQO419',
|
|
2598
|
+
cancellations: [
|
|
2599
|
+
{
|
|
2600
|
+
dateFrom: '2022-05-04 00:00',
|
|
2601
|
+
dateTo: '2022-05-05 23:59',
|
|
2602
|
+
price: {
|
|
2603
|
+
currency: 'USD',
|
|
2604
|
+
amount: 979.95,
|
|
2605
|
+
},
|
|
2606
|
+
convertedPrice: {
|
|
2607
|
+
currency: 'USD',
|
|
2608
|
+
amount: 979.95,
|
|
2609
|
+
},
|
|
2610
|
+
noShow: false,
|
|
2611
|
+
},
|
|
2612
|
+
{
|
|
2613
|
+
price: {
|
|
2614
|
+
currency: 'USD',
|
|
2615
|
+
amount: 979.95,
|
|
2616
|
+
},
|
|
2617
|
+
convertedPrice: {
|
|
2618
|
+
currency: 'USD',
|
|
2619
|
+
amount: 979.95,
|
|
2620
|
+
},
|
|
2621
|
+
noShow: true,
|
|
2622
|
+
},
|
|
2623
|
+
],
|
|
2624
|
+
taxesAndFeesIncluded: false,
|
|
2625
|
+
salesTerms: [
|
|
2626
|
+
{
|
|
2627
|
+
type: 'CLIENT',
|
|
2628
|
+
price: {
|
|
2629
|
+
currency: 'USD',
|
|
2630
|
+
amount: 988.71,
|
|
2631
|
+
taxesAndFees: [],
|
|
2632
|
+
},
|
|
2633
|
+
originalSupplierCurrency: 'USD',
|
|
2634
|
+
promoCodeApplied: false,
|
|
2635
|
+
priceBreakDowns: [
|
|
2636
|
+
{
|
|
2637
|
+
date: '2022-05-05',
|
|
2638
|
+
weekDayNumber: 4,
|
|
2639
|
+
weekDayName: 'Thursday',
|
|
2640
|
+
price: {
|
|
2641
|
+
currency: 'USD',
|
|
2642
|
+
amount: 417.0,
|
|
2643
|
+
originalCurrency: 'USD',
|
|
2644
|
+
originalAmount: 417.0,
|
|
2645
|
+
},
|
|
2646
|
+
},
|
|
2647
|
+
{
|
|
2648
|
+
date: '2022-05-06',
|
|
2649
|
+
weekDayNumber: 5,
|
|
2650
|
+
weekDayName: 'Friday',
|
|
2651
|
+
price: {
|
|
2652
|
+
currency: 'USD',
|
|
2653
|
+
amount: 417.0,
|
|
2654
|
+
originalCurrency: 'USD',
|
|
2655
|
+
originalAmount: 417.0,
|
|
2656
|
+
},
|
|
2657
|
+
},
|
|
2658
|
+
{
|
|
2659
|
+
name: 'Service Charge',
|
|
2660
|
+
price: {
|
|
2661
|
+
currency: 'USD',
|
|
2662
|
+
amount: 62.55,
|
|
2663
|
+
originalCurrency: 'USD',
|
|
2664
|
+
originalAmount: 62.55,
|
|
2665
|
+
},
|
|
2666
|
+
},
|
|
2667
|
+
{
|
|
2668
|
+
name: 'VAT',
|
|
2669
|
+
price: {
|
|
2670
|
+
currency: 'USD',
|
|
2671
|
+
amount: 83.4,
|
|
2672
|
+
originalCurrency: 'USD',
|
|
2673
|
+
originalAmount: 83.4,
|
|
2674
|
+
},
|
|
2675
|
+
},
|
|
2676
|
+
{
|
|
2677
|
+
name: 'Room Rate Levy',
|
|
2678
|
+
price: {
|
|
2679
|
+
currency: 'USD',
|
|
2680
|
+
amount: 8.76,
|
|
2681
|
+
originalCurrency: 'USD',
|
|
2682
|
+
originalAmount: 8.76,
|
|
2683
|
+
},
|
|
2684
|
+
},
|
|
2685
|
+
],
|
|
2686
|
+
},
|
|
2687
|
+
],
|
|
2688
|
+
rph: '1',
|
|
2689
|
+
guests: {
|
|
2690
|
+
adults: 2,
|
|
2691
|
+
ages: [],
|
|
2692
|
+
},
|
|
2693
|
+
available: false,
|
|
2694
|
+
info: {
|
|
2695
|
+
roomType: 'Honeymoon Room',
|
|
2696
|
+
roomTypeServiceId: 2130308,
|
|
2697
|
+
mealTypes: [
|
|
2698
|
+
{
|
|
2699
|
+
otaCode: 1,
|
|
2700
|
+
otaName: 'All inclusive',
|
|
2701
|
+
standardCode: 'AI',
|
|
2702
|
+
standardName: 'All inclusive',
|
|
2703
|
+
name: 'All Inclusive',
|
|
2704
|
+
id: 2130312,
|
|
2705
|
+
},
|
|
2706
|
+
],
|
|
2707
|
+
mealOptionsAvailable: false,
|
|
2708
|
+
supplierRoomTypeCode: 'SRTC_1920193',
|
|
2709
|
+
bedroomsQuantity: 1,
|
|
2710
|
+
bathroomsQuantity: 1,
|
|
2711
|
+
bedTypes: [
|
|
2712
|
+
{
|
|
2713
|
+
type: 'King Bed',
|
|
2714
|
+
quantity: 1,
|
|
2715
|
+
alternate: false,
|
|
2716
|
+
},
|
|
2717
|
+
{
|
|
2718
|
+
type: 'Queen Bed',
|
|
2719
|
+
quantity: 1,
|
|
2720
|
+
alternate: true,
|
|
2721
|
+
},
|
|
2722
|
+
],
|
|
2723
|
+
},
|
|
2724
|
+
nonRefundable: true,
|
|
2725
|
+
roomServices: [
|
|
2726
|
+
'Bathroom Amenities',
|
|
2727
|
+
'Balcony/Terrace',
|
|
2728
|
+
'Alarm Clock',
|
|
2729
|
+
'Cable/Satellite television',
|
|
2730
|
+
'Air conditioning',
|
|
2731
|
+
'Adjoining Room',
|
|
2732
|
+
'Linens provided',
|
|
2733
|
+
'Mini-refrigerator',
|
|
2734
|
+
'In-room safe',
|
|
2735
|
+
'Free Wi-Fi',
|
|
2736
|
+
'Hairdryer',
|
|
2737
|
+
'Daily housekeeping service',
|
|
2738
|
+
'Telephone',
|
|
2739
|
+
'Tub/shower combination',
|
|
2740
|
+
'Towels provided',
|
|
2741
|
+
'Television',
|
|
2742
|
+
'Ocean view',
|
|
2743
|
+
'Non-smoking',
|
|
2744
|
+
'Pool view',
|
|
2745
|
+
],
|
|
2746
|
+
extraServices: true,
|
|
2747
|
+
packageOnly: false,
|
|
2748
|
+
hotelCode: 'BBC',
|
|
2749
|
+
hotelSupplierCode: 'company.2130149',
|
|
2750
|
+
hotelSupplierId: 2130149,
|
|
2751
|
+
promoCode: false,
|
|
2752
|
+
hotDeal: false,
|
|
2753
|
+
percentDiscount: false,
|
|
2754
|
+
specialOffer: false,
|
|
2755
|
+
externalDiscount: false,
|
|
2756
|
+
freeNightsDiscount: false,
|
|
2757
|
+
cardGuarantee: false,
|
|
2758
|
+
onExtraBed: [],
|
|
2759
|
+
onWithoutPlace: [],
|
|
2760
|
+
},
|
|
2761
|
+
],
|
|
2762
|
+
bookAllowed: false,
|
|
2763
|
+
},
|
|
2764
|
+
{
|
|
2765
|
+
info: {
|
|
2766
|
+
name: 'Courtyard by Marriott Bridgetown',
|
|
2767
|
+
address: 'The Garrison Historic Area, Hastings, Christ Church',
|
|
2768
|
+
category: 3,
|
|
2769
|
+
supplierCode: 'company.2127533',
|
|
2770
|
+
cityId: 166988,
|
|
2771
|
+
cityCode: '166988',
|
|
2772
|
+
cityName: 'Hastings',
|
|
2773
|
+
countryName: 'Barbados',
|
|
2774
|
+
hotelCode: 'CMBB',
|
|
2775
|
+
latitude: '13.07662',
|
|
2776
|
+
longitude: '-59.60137',
|
|
2777
|
+
mainImageUrl: 'hotel-images2/8/4/3/8435947fa3cf4c2ba7d061c77315a83e.jpg',
|
|
2778
|
+
hotelType: 'LIVING',
|
|
2779
|
+
offerServicesForFilter: [],
|
|
2780
|
+
ratings: [
|
|
2781
|
+
{
|
|
2782
|
+
ratingSource: 'INTERNAL',
|
|
2783
|
+
rating: 500.0,
|
|
2784
|
+
},
|
|
2785
|
+
{
|
|
2786
|
+
ratingSource: 'TRIPADVISOR',
|
|
2787
|
+
rating: 0.0,
|
|
2788
|
+
reviewsURL:
|
|
2789
|
+
'https://www.tripadvisor.com/Hotel_Review-g147263-d1966392-Reviews-Courtyard_by_Marriott_Bridgetown_Barbados-Bridgetown_Saint_Michael_Parish_Barbados.html',
|
|
2790
|
+
},
|
|
2791
|
+
],
|
|
2792
|
+
hotelServices: [
|
|
2793
|
+
{
|
|
2794
|
+
supplierServiceName: 'Car park',
|
|
2795
|
+
groupName: 'Property Amenities',
|
|
2796
|
+
},
|
|
2797
|
+
{
|
|
2798
|
+
supplierServiceName: 'Car rentals',
|
|
2799
|
+
groupName: 'Property Amenities',
|
|
2800
|
+
},
|
|
2801
|
+
{
|
|
2802
|
+
supplierServiceName: 'Currency exchange',
|
|
2803
|
+
groupName: 'Property Amenities',
|
|
2804
|
+
},
|
|
2805
|
+
{
|
|
2806
|
+
supplierServiceName: 'Doctor on call',
|
|
2807
|
+
groupName: 'Property Amenities',
|
|
2808
|
+
},
|
|
2809
|
+
{
|
|
2810
|
+
supplierServiceName: 'Dry cleaning service',
|
|
2811
|
+
groupName: 'Property Amenities',
|
|
2812
|
+
},
|
|
2813
|
+
{
|
|
2814
|
+
supplierServiceName: 'Laundry Service',
|
|
2815
|
+
groupName: 'Property Amenities',
|
|
2816
|
+
},
|
|
2817
|
+
{
|
|
2818
|
+
supplierServiceName: 'Smoke free property',
|
|
2819
|
+
groupName: 'Property Amenities',
|
|
2820
|
+
},
|
|
2821
|
+
{
|
|
2822
|
+
supplierServiceName: 'Tour/Ticket Assistance',
|
|
2823
|
+
groupName: 'Property Amenities',
|
|
2824
|
+
},
|
|
2825
|
+
{
|
|
2826
|
+
supplierServiceName: 'Conference Equipment',
|
|
2827
|
+
groupName: 'Property Amenities',
|
|
2828
|
+
},
|
|
2829
|
+
{
|
|
2830
|
+
supplierServiceName: 'Free Wi-Fi',
|
|
2831
|
+
groupName: 'Property Amenities',
|
|
2832
|
+
},
|
|
2833
|
+
{
|
|
2834
|
+
supplierServiceName: 'Connecting/Adjoining Rooms',
|
|
2835
|
+
groupName: 'Property Amenities',
|
|
2836
|
+
},
|
|
2837
|
+
{
|
|
2838
|
+
supplierServiceName: 'Cots/Cribs',
|
|
2839
|
+
groupName: 'Property Amenities',
|
|
2840
|
+
},
|
|
2841
|
+
{
|
|
2842
|
+
supplierServiceName: 'Kids Menu',
|
|
2843
|
+
groupName: 'Property Amenities',
|
|
2844
|
+
},
|
|
2845
|
+
{
|
|
2846
|
+
supplierServiceName: 'Bar',
|
|
2847
|
+
groupName: 'Property Amenities',
|
|
2848
|
+
},
|
|
2849
|
+
{
|
|
2850
|
+
supplierServiceName: 'Snack/sandwich bar',
|
|
2851
|
+
groupName: 'Property Amenities',
|
|
2852
|
+
},
|
|
2853
|
+
{
|
|
2854
|
+
supplierServiceName: 'American Express',
|
|
2855
|
+
groupName: 'Property Amenities',
|
|
2856
|
+
},
|
|
2857
|
+
{
|
|
2858
|
+
supplierServiceName: 'Cash',
|
|
2859
|
+
groupName: 'Property Amenities',
|
|
2860
|
+
},
|
|
2861
|
+
{
|
|
2862
|
+
supplierServiceName: 'Discover',
|
|
2863
|
+
groupName: 'Property Amenities',
|
|
2864
|
+
},
|
|
2865
|
+
{
|
|
2866
|
+
supplierServiceName: 'MasterCard Credit/Debit',
|
|
2867
|
+
groupName: 'Property Amenities',
|
|
2868
|
+
},
|
|
2869
|
+
{
|
|
2870
|
+
supplierServiceName: 'Visa Credit/Debit',
|
|
2871
|
+
groupName: 'Property Amenities',
|
|
2872
|
+
},
|
|
2873
|
+
{
|
|
2874
|
+
supplierServiceName: 'Beach Shuttle',
|
|
2875
|
+
groupName: 'Property Amenities',
|
|
2876
|
+
},
|
|
2877
|
+
{
|
|
2878
|
+
supplierServiceName: 'Convenience store',
|
|
2879
|
+
groupName: 'Property Amenities',
|
|
2880
|
+
},
|
|
2881
|
+
{
|
|
2882
|
+
supplierServiceName: 'Ecotours',
|
|
2883
|
+
groupName: 'Property Amenities',
|
|
2884
|
+
},
|
|
2885
|
+
{
|
|
2886
|
+
supplierServiceName: 'Fitness facilities',
|
|
2887
|
+
groupName: 'Property Amenities',
|
|
2888
|
+
},
|
|
2889
|
+
{
|
|
2890
|
+
supplierServiceName: 'Golf Course nearby',
|
|
2891
|
+
groupName: 'Property Amenities',
|
|
2892
|
+
},
|
|
2893
|
+
{
|
|
2894
|
+
supplierServiceName: 'Horseback riding nearby',
|
|
2895
|
+
groupName: 'Property Amenities',
|
|
2896
|
+
},
|
|
2897
|
+
{
|
|
2898
|
+
supplierServiceName: 'Enhanced cleaning measures',
|
|
2899
|
+
groupName: 'Property Amenities',
|
|
2900
|
+
},
|
|
2901
|
+
{
|
|
2902
|
+
supplierServiceName: 'Fire Extinguisher',
|
|
2903
|
+
groupName: 'Property Amenities',
|
|
2904
|
+
},
|
|
2905
|
+
{
|
|
2906
|
+
supplierServiceName: 'Meeting Room',
|
|
2907
|
+
groupName: 'Accessibility',
|
|
2908
|
+
},
|
|
2909
|
+
{
|
|
2910
|
+
supplierServiceName: 'Parking',
|
|
2911
|
+
groupName: 'Accessibility',
|
|
2912
|
+
},
|
|
2913
|
+
{
|
|
2914
|
+
supplierServiceName: 'Wheelchair Accessibility',
|
|
2915
|
+
groupName: 'Accessibility',
|
|
2916
|
+
},
|
|
2917
|
+
{
|
|
2918
|
+
supplierServiceName: 'Elevators',
|
|
2919
|
+
groupName: 'Accessibility',
|
|
2920
|
+
},
|
|
2921
|
+
{
|
|
2922
|
+
supplierServiceName: 'Accessible shower',
|
|
2923
|
+
groupName: 'Accessibility',
|
|
2924
|
+
},
|
|
2925
|
+
{
|
|
2926
|
+
supplierServiceName: 'Roll-in shower available on request',
|
|
2927
|
+
groupName: 'Accessibility',
|
|
2928
|
+
},
|
|
2929
|
+
{
|
|
2930
|
+
supplierServiceName: 'Free Public Space Wi-Fi',
|
|
2931
|
+
groupName: 'Property Amenities',
|
|
2932
|
+
},
|
|
2933
|
+
],
|
|
2934
|
+
hotelClassifications: [],
|
|
2935
|
+
type: 'Hotel',
|
|
2936
|
+
typeOTAName: 'Hotel',
|
|
2937
|
+
recommended: false,
|
|
2938
|
+
},
|
|
2939
|
+
roomOffers: [
|
|
2940
|
+
{
|
|
2941
|
+
offerKey: 'NCB59Cx8SN2gpbqB',
|
|
2942
|
+
cancellations: [
|
|
2943
|
+
{
|
|
2944
|
+
dateFrom: '2022-04-11 00:00',
|
|
2945
|
+
dateTo: '2022-05-05 23:59',
|
|
2946
|
+
price: {
|
|
2947
|
+
currency: 'USD',
|
|
2948
|
+
amount: 212.6,
|
|
2949
|
+
},
|
|
2950
|
+
convertedPrice: {
|
|
2951
|
+
currency: 'USD',
|
|
2952
|
+
amount: 212.6,
|
|
2953
|
+
},
|
|
2954
|
+
noShow: false,
|
|
2955
|
+
},
|
|
2956
|
+
{
|
|
2957
|
+
price: {
|
|
2958
|
+
currency: 'USD',
|
|
2959
|
+
amount: 212.6,
|
|
2960
|
+
},
|
|
2961
|
+
convertedPrice: {
|
|
2962
|
+
currency: 'USD',
|
|
2963
|
+
amount: 212.6,
|
|
2964
|
+
},
|
|
2965
|
+
noShow: true,
|
|
2966
|
+
},
|
|
2967
|
+
],
|
|
2968
|
+
taxesAndFeesIncluded: false,
|
|
2969
|
+
salesTerms: [
|
|
2970
|
+
{
|
|
2971
|
+
type: 'CLIENT',
|
|
2972
|
+
price: {
|
|
2973
|
+
currency: 'USD',
|
|
2974
|
+
amount: 370.86,
|
|
2975
|
+
taxesAndFees: [],
|
|
2976
|
+
},
|
|
2977
|
+
originalSupplierCurrency: 'USD',
|
|
2978
|
+
promoCodeApplied: false,
|
|
2979
|
+
priceBreakDowns: [
|
|
2980
|
+
{
|
|
2981
|
+
date: '2022-05-05',
|
|
2982
|
+
weekDayNumber: 4,
|
|
2983
|
+
weekDayName: 'Thursday',
|
|
2984
|
+
price: {
|
|
2985
|
+
currency: 'USD',
|
|
2986
|
+
amount: 154.0,
|
|
2987
|
+
originalCurrency: 'USD',
|
|
2988
|
+
originalAmount: 154.0,
|
|
2989
|
+
},
|
|
2990
|
+
},
|
|
2991
|
+
{
|
|
2992
|
+
date: '2022-05-06',
|
|
2993
|
+
weekDayNumber: 5,
|
|
2994
|
+
weekDayName: 'Friday',
|
|
2995
|
+
price: {
|
|
2996
|
+
currency: 'USD',
|
|
2997
|
+
amount: 139.0,
|
|
2998
|
+
originalCurrency: 'USD',
|
|
2999
|
+
originalAmount: 139.0,
|
|
3000
|
+
},
|
|
3001
|
+
},
|
|
3002
|
+
{
|
|
3003
|
+
name: 'Service Charge',
|
|
3004
|
+
price: {
|
|
3005
|
+
currency: 'USD',
|
|
3006
|
+
amount: 29.3,
|
|
3007
|
+
originalCurrency: 'USD',
|
|
3008
|
+
originalAmount: 29.3,
|
|
3009
|
+
},
|
|
3010
|
+
},
|
|
3011
|
+
{
|
|
3012
|
+
name: 'Room Rate Levy',
|
|
3013
|
+
price: {
|
|
3014
|
+
currency: 'USD',
|
|
3015
|
+
amount: 19.26,
|
|
3016
|
+
originalCurrency: 'USD',
|
|
3017
|
+
originalAmount: 19.26,
|
|
3018
|
+
},
|
|
3019
|
+
},
|
|
3020
|
+
{
|
|
3021
|
+
name: 'VAT',
|
|
3022
|
+
price: {
|
|
3023
|
+
currency: 'USD',
|
|
3024
|
+
amount: 29.3,
|
|
3025
|
+
originalCurrency: 'USD',
|
|
3026
|
+
originalAmount: 29.3,
|
|
3027
|
+
},
|
|
3028
|
+
},
|
|
3029
|
+
],
|
|
3030
|
+
},
|
|
3031
|
+
],
|
|
3032
|
+
rph: '1',
|
|
3033
|
+
guests: {
|
|
3034
|
+
adults: 2,
|
|
3035
|
+
ages: [],
|
|
3036
|
+
},
|
|
3037
|
+
available: false,
|
|
3038
|
+
info: {
|
|
3039
|
+
roomType: 'King Guest Room',
|
|
3040
|
+
roomTypeServiceId: 2127697,
|
|
3041
|
+
mealTypes: [
|
|
3042
|
+
{
|
|
3043
|
+
otaCode: 14,
|
|
3044
|
+
otaName: 'Room only\t',
|
|
3045
|
+
standardCode: 'RO',
|
|
3046
|
+
standardName: 'Room only',
|
|
3047
|
+
name: 'Room Only',
|
|
3048
|
+
id: 2127698,
|
|
3049
|
+
},
|
|
3050
|
+
],
|
|
3051
|
+
mealOptionsAvailable: false,
|
|
3052
|
+
supplierRoomTypeCode: 'SRTC_1920187',
|
|
3053
|
+
bedroomsQuantity: 1,
|
|
3054
|
+
bathroomsQuantity: 1,
|
|
3055
|
+
bedTypes: [
|
|
3056
|
+
{
|
|
3057
|
+
type: 'King Bed',
|
|
3058
|
+
quantity: 1,
|
|
3059
|
+
alternate: false,
|
|
3060
|
+
},
|
|
3061
|
+
{
|
|
3062
|
+
type: 'Sofa Bed Double',
|
|
3063
|
+
quantity: 1,
|
|
3064
|
+
alternate: false,
|
|
3065
|
+
},
|
|
3066
|
+
],
|
|
3067
|
+
},
|
|
3068
|
+
nonRefundable: true,
|
|
3069
|
+
roomServices: [
|
|
3070
|
+
'Bathroom Amenities',
|
|
3071
|
+
'Alarm Clock',
|
|
3072
|
+
'Cable/Satellite television',
|
|
3073
|
+
'Blackout drapes/curtains',
|
|
3074
|
+
'Linens provided',
|
|
3075
|
+
'Eco-friendly housekeeping',
|
|
3076
|
+
'Mini-refrigerator',
|
|
3077
|
+
'In-room safe',
|
|
3078
|
+
'Ironing Board',
|
|
3079
|
+
'Iron',
|
|
3080
|
+
'Free Wi-Fi',
|
|
3081
|
+
'Hairdryer',
|
|
3082
|
+
'Cribs available',
|
|
3083
|
+
'Coffee/Tea maker',
|
|
3084
|
+
'Desk',
|
|
3085
|
+
'Telephone',
|
|
3086
|
+
'Street view',
|
|
3087
|
+
'Towels provided',
|
|
3088
|
+
'Television',
|
|
3089
|
+
'Sofa bed',
|
|
3090
|
+
'Private bathroom',
|
|
3091
|
+
'Non-smoking',
|
|
3092
|
+
],
|
|
3093
|
+
extraServices: true,
|
|
3094
|
+
packageOnly: false,
|
|
3095
|
+
hotelCode: 'CMBB',
|
|
3096
|
+
hotelSupplierCode: 'company.2127533',
|
|
3097
|
+
hotelSupplierId: 2127533,
|
|
3098
|
+
promoCode: false,
|
|
3099
|
+
hotDeal: false,
|
|
3100
|
+
percentDiscount: false,
|
|
3101
|
+
specialOffer: false,
|
|
3102
|
+
externalDiscount: false,
|
|
3103
|
+
freeNightsDiscount: false,
|
|
3104
|
+
cardGuarantee: false,
|
|
3105
|
+
onExtraBed: [],
|
|
3106
|
+
onWithoutPlace: [],
|
|
3107
|
+
},
|
|
3108
|
+
{
|
|
3109
|
+
offerKey: 'OwpPGsNeu1eraqFN',
|
|
3110
|
+
cancellations: [
|
|
3111
|
+
{
|
|
3112
|
+
dateFrom: '2022-04-11 00:00',
|
|
3113
|
+
dateTo: '2022-05-05 23:59',
|
|
3114
|
+
price: {
|
|
3115
|
+
currency: 'USD',
|
|
3116
|
+
amount: 212.6,
|
|
3117
|
+
},
|
|
3118
|
+
convertedPrice: {
|
|
3119
|
+
currency: 'USD',
|
|
3120
|
+
amount: 212.6,
|
|
3121
|
+
},
|
|
3122
|
+
noShow: false,
|
|
3123
|
+
},
|
|
3124
|
+
{
|
|
3125
|
+
price: {
|
|
3126
|
+
currency: 'USD',
|
|
3127
|
+
amount: 212.6,
|
|
3128
|
+
},
|
|
3129
|
+
convertedPrice: {
|
|
3130
|
+
currency: 'USD',
|
|
3131
|
+
amount: 212.6,
|
|
3132
|
+
},
|
|
3133
|
+
noShow: true,
|
|
3134
|
+
},
|
|
3135
|
+
],
|
|
3136
|
+
taxesAndFeesIncluded: false,
|
|
3137
|
+
salesTerms: [
|
|
3138
|
+
{
|
|
3139
|
+
type: 'CLIENT',
|
|
3140
|
+
price: {
|
|
3141
|
+
currency: 'USD',
|
|
3142
|
+
amount: 370.86,
|
|
3143
|
+
taxesAndFees: [],
|
|
3144
|
+
},
|
|
3145
|
+
originalSupplierCurrency: 'USD',
|
|
3146
|
+
promoCodeApplied: false,
|
|
3147
|
+
priceBreakDowns: [
|
|
3148
|
+
{
|
|
3149
|
+
date: '2022-05-05',
|
|
3150
|
+
weekDayNumber: 4,
|
|
3151
|
+
weekDayName: 'Thursday',
|
|
3152
|
+
price: {
|
|
3153
|
+
currency: 'USD',
|
|
3154
|
+
amount: 154.0,
|
|
3155
|
+
originalCurrency: 'USD',
|
|
3156
|
+
originalAmount: 154.0,
|
|
3157
|
+
},
|
|
3158
|
+
},
|
|
3159
|
+
{
|
|
3160
|
+
date: '2022-05-06',
|
|
3161
|
+
weekDayNumber: 5,
|
|
3162
|
+
weekDayName: 'Friday',
|
|
3163
|
+
price: {
|
|
3164
|
+
currency: 'USD',
|
|
3165
|
+
amount: 139.0,
|
|
3166
|
+
originalCurrency: 'USD',
|
|
3167
|
+
originalAmount: 139.0,
|
|
3168
|
+
},
|
|
3169
|
+
},
|
|
3170
|
+
{
|
|
3171
|
+
name: 'Service Charge',
|
|
3172
|
+
price: {
|
|
3173
|
+
currency: 'USD',
|
|
3174
|
+
amount: 29.3,
|
|
3175
|
+
originalCurrency: 'USD',
|
|
3176
|
+
originalAmount: 29.3,
|
|
3177
|
+
},
|
|
3178
|
+
},
|
|
3179
|
+
{
|
|
3180
|
+
name: 'Room Rate Levy',
|
|
3181
|
+
price: {
|
|
3182
|
+
currency: 'USD',
|
|
3183
|
+
amount: 19.26,
|
|
3184
|
+
originalCurrency: 'USD',
|
|
3185
|
+
originalAmount: 19.26,
|
|
3186
|
+
},
|
|
3187
|
+
},
|
|
3188
|
+
{
|
|
3189
|
+
name: 'VAT',
|
|
3190
|
+
price: {
|
|
3191
|
+
currency: 'USD',
|
|
3192
|
+
amount: 29.3,
|
|
3193
|
+
originalCurrency: 'USD',
|
|
3194
|
+
originalAmount: 29.3,
|
|
3195
|
+
},
|
|
3196
|
+
},
|
|
3197
|
+
],
|
|
3198
|
+
},
|
|
3199
|
+
],
|
|
3200
|
+
rph: '1',
|
|
3201
|
+
guests: {
|
|
3202
|
+
adults: 2,
|
|
3203
|
+
ages: [],
|
|
3204
|
+
},
|
|
3205
|
+
available: false,
|
|
3206
|
+
info: {
|
|
3207
|
+
roomType: 'Queen Guest Room',
|
|
3208
|
+
roomTypeServiceId: 2127696,
|
|
3209
|
+
mealTypes: [
|
|
3210
|
+
{
|
|
3211
|
+
otaCode: 14,
|
|
3212
|
+
otaName: 'Room only\t',
|
|
3213
|
+
standardCode: 'RO',
|
|
3214
|
+
standardName: 'Room only',
|
|
3215
|
+
name: 'Room Only',
|
|
3216
|
+
id: 2127698,
|
|
3217
|
+
},
|
|
3218
|
+
],
|
|
3219
|
+
mealOptionsAvailable: false,
|
|
3220
|
+
supplierRoomTypeCode: 'SRTC_1920188',
|
|
3221
|
+
bedroomsQuantity: 1,
|
|
3222
|
+
bathroomsQuantity: 1,
|
|
3223
|
+
bedTypes: [
|
|
3224
|
+
{
|
|
3225
|
+
type: 'Queen Bed',
|
|
3226
|
+
quantity: 2,
|
|
3227
|
+
alternate: false,
|
|
3228
|
+
},
|
|
3229
|
+
],
|
|
3230
|
+
},
|
|
3231
|
+
nonRefundable: true,
|
|
3232
|
+
roomServices: [
|
|
3233
|
+
'Bathroom Amenities',
|
|
3234
|
+
'Alarm Clock',
|
|
3235
|
+
'Cable/Satellite television',
|
|
3236
|
+
'Blackout drapes/curtains',
|
|
3237
|
+
'Linens provided',
|
|
3238
|
+
'Eco-friendly housekeeping',
|
|
3239
|
+
'Mini-refrigerator',
|
|
3240
|
+
'In-room safe',
|
|
3241
|
+
'Ironing Board',
|
|
3242
|
+
'Iron',
|
|
3243
|
+
'Free Wi-Fi',
|
|
3244
|
+
'Hairdryer',
|
|
3245
|
+
'Cribs available',
|
|
3246
|
+
'Coffee/Tea maker',
|
|
3247
|
+
'Desk',
|
|
3248
|
+
'Telephone',
|
|
3249
|
+
'Street view',
|
|
3250
|
+
'Towels provided',
|
|
3251
|
+
'Television',
|
|
3252
|
+
'Private bathroom',
|
|
3253
|
+
'Non-smoking',
|
|
3254
|
+
],
|
|
3255
|
+
extraServices: true,
|
|
3256
|
+
packageOnly: false,
|
|
3257
|
+
hotelCode: 'CMBB',
|
|
3258
|
+
hotelSupplierCode: 'company.2127533',
|
|
3259
|
+
hotelSupplierId: 2127533,
|
|
3260
|
+
promoCode: false,
|
|
3261
|
+
hotDeal: false,
|
|
3262
|
+
percentDiscount: false,
|
|
3263
|
+
specialOffer: false,
|
|
3264
|
+
externalDiscount: false,
|
|
3265
|
+
freeNightsDiscount: false,
|
|
3266
|
+
cardGuarantee: false,
|
|
3267
|
+
onExtraBed: [],
|
|
3268
|
+
onWithoutPlace: [],
|
|
3269
|
+
},
|
|
3270
|
+
{
|
|
3271
|
+
offerKey: 'DbjzMTUYNwXSBAEV',
|
|
3272
|
+
cancellations: [
|
|
3273
|
+
{
|
|
3274
|
+
dateFrom: '2022-04-11 00:00',
|
|
3275
|
+
dateTo: '2022-05-05 23:59',
|
|
3276
|
+
price: {
|
|
3277
|
+
currency: 'USD',
|
|
3278
|
+
amount: 242.6,
|
|
3279
|
+
},
|
|
3280
|
+
convertedPrice: {
|
|
3281
|
+
currency: 'USD',
|
|
3282
|
+
amount: 242.6,
|
|
3283
|
+
},
|
|
3284
|
+
noShow: false,
|
|
3285
|
+
},
|
|
3286
|
+
{
|
|
3287
|
+
price: {
|
|
3288
|
+
currency: 'USD',
|
|
3289
|
+
amount: 242.6,
|
|
3290
|
+
},
|
|
3291
|
+
convertedPrice: {
|
|
3292
|
+
currency: 'USD',
|
|
3293
|
+
amount: 242.6,
|
|
3294
|
+
},
|
|
3295
|
+
noShow: true,
|
|
3296
|
+
},
|
|
3297
|
+
],
|
|
3298
|
+
taxesAndFeesIncluded: false,
|
|
3299
|
+
salesTerms: [
|
|
3300
|
+
{
|
|
3301
|
+
type: 'CLIENT',
|
|
3302
|
+
price: {
|
|
3303
|
+
currency: 'USD',
|
|
3304
|
+
amount: 430.86,
|
|
3305
|
+
taxesAndFees: [],
|
|
3306
|
+
},
|
|
3307
|
+
originalSupplierCurrency: 'USD',
|
|
3308
|
+
promoCodeApplied: false,
|
|
3309
|
+
priceBreakDowns: [
|
|
3310
|
+
{
|
|
3311
|
+
date: '2022-05-05',
|
|
3312
|
+
weekDayNumber: 4,
|
|
3313
|
+
weekDayName: 'Thursday',
|
|
3314
|
+
price: {
|
|
3315
|
+
currency: 'USD',
|
|
3316
|
+
amount: 174.0,
|
|
3317
|
+
originalCurrency: 'USD',
|
|
3318
|
+
originalAmount: 174.0,
|
|
3319
|
+
},
|
|
3320
|
+
},
|
|
3321
|
+
{
|
|
3322
|
+
date: '2022-05-06',
|
|
3323
|
+
weekDayNumber: 5,
|
|
3324
|
+
weekDayName: 'Friday',
|
|
3325
|
+
price: {
|
|
3326
|
+
currency: 'USD',
|
|
3327
|
+
amount: 169.0,
|
|
3328
|
+
originalCurrency: 'USD',
|
|
3329
|
+
originalAmount: 169.0,
|
|
3330
|
+
},
|
|
3331
|
+
},
|
|
3332
|
+
{
|
|
3333
|
+
name: 'Service Charge',
|
|
3334
|
+
price: {
|
|
3335
|
+
currency: 'USD',
|
|
3336
|
+
amount: 34.3,
|
|
3337
|
+
originalCurrency: 'USD',
|
|
3338
|
+
originalAmount: 34.3,
|
|
3339
|
+
},
|
|
3340
|
+
},
|
|
3341
|
+
{
|
|
3342
|
+
name: 'Room Rate Levy',
|
|
3343
|
+
price: {
|
|
3344
|
+
currency: 'USD',
|
|
3345
|
+
amount: 19.26,
|
|
3346
|
+
originalCurrency: 'USD',
|
|
3347
|
+
originalAmount: 19.26,
|
|
3348
|
+
},
|
|
3349
|
+
},
|
|
3350
|
+
{
|
|
3351
|
+
name: 'VAT',
|
|
3352
|
+
price: {
|
|
3353
|
+
currency: 'USD',
|
|
3354
|
+
amount: 34.3,
|
|
3355
|
+
originalCurrency: 'USD',
|
|
3356
|
+
originalAmount: 34.3,
|
|
3357
|
+
},
|
|
3358
|
+
},
|
|
3359
|
+
],
|
|
3360
|
+
},
|
|
3361
|
+
],
|
|
3362
|
+
rph: '1',
|
|
3363
|
+
guests: {
|
|
3364
|
+
adults: 2,
|
|
3365
|
+
ages: [],
|
|
3366
|
+
},
|
|
3367
|
+
available: false,
|
|
3368
|
+
info: {
|
|
3369
|
+
roomType: 'Executive Guest Room',
|
|
3370
|
+
roomTypeServiceId: 2127694,
|
|
3371
|
+
mealTypes: [
|
|
3372
|
+
{
|
|
3373
|
+
otaCode: 14,
|
|
3374
|
+
otaName: 'Room only\t',
|
|
3375
|
+
standardCode: 'RO',
|
|
3376
|
+
standardName: 'Room only',
|
|
3377
|
+
name: 'Room Only',
|
|
3378
|
+
id: 2127698,
|
|
3379
|
+
},
|
|
3380
|
+
],
|
|
3381
|
+
mealOptionsAvailable: false,
|
|
3382
|
+
supplierRoomTypeCode: 'SRTC_1920189',
|
|
3383
|
+
bedroomsQuantity: 1,
|
|
3384
|
+
bathroomsQuantity: 1,
|
|
3385
|
+
bedTypes: [
|
|
3386
|
+
{
|
|
3387
|
+
type: 'King Bed',
|
|
3388
|
+
quantity: 1,
|
|
3389
|
+
alternate: false,
|
|
3390
|
+
},
|
|
3391
|
+
],
|
|
3392
|
+
},
|
|
3393
|
+
nonRefundable: true,
|
|
3394
|
+
roomServices: [
|
|
3395
|
+
'Bathroom Amenities',
|
|
3396
|
+
'Balcony/Terrace',
|
|
3397
|
+
'Alarm Clock',
|
|
3398
|
+
'Cable/Satellite television',
|
|
3399
|
+
'Blackout drapes/curtains',
|
|
3400
|
+
'Linens provided',
|
|
3401
|
+
'Eco-friendly housekeeping',
|
|
3402
|
+
'Mini-refrigerator',
|
|
3403
|
+
'In-room safe',
|
|
3404
|
+
'Ironing Board',
|
|
3405
|
+
'Iron',
|
|
3406
|
+
'Free Wi-Fi',
|
|
3407
|
+
'Hairdryer',
|
|
3408
|
+
'Cribs available',
|
|
3409
|
+
'Coffee/Tea maker',
|
|
3410
|
+
'Desk',
|
|
3411
|
+
'Telephone',
|
|
3412
|
+
'Towels provided',
|
|
3413
|
+
'Television',
|
|
3414
|
+
'Private bathroom',
|
|
3415
|
+
'Non-smoking',
|
|
3416
|
+
'Partial ocean view',
|
|
3417
|
+
],
|
|
3418
|
+
extraServices: true,
|
|
3419
|
+
packageOnly: false,
|
|
3420
|
+
hotelCode: 'CMBB',
|
|
3421
|
+
hotelSupplierCode: 'company.2127533',
|
|
3422
|
+
hotelSupplierId: 2127533,
|
|
3423
|
+
promoCode: false,
|
|
3424
|
+
hotDeal: false,
|
|
3425
|
+
percentDiscount: false,
|
|
3426
|
+
specialOffer: false,
|
|
3427
|
+
externalDiscount: false,
|
|
3428
|
+
freeNightsDiscount: false,
|
|
3429
|
+
cardGuarantee: false,
|
|
3430
|
+
onExtraBed: [],
|
|
3431
|
+
onWithoutPlace: [],
|
|
3432
|
+
},
|
|
3433
|
+
{
|
|
3434
|
+
offerKey: '8L53kHZDkItKxFiy',
|
|
3435
|
+
cancellations: [
|
|
3436
|
+
{
|
|
3437
|
+
dateFrom: '2022-04-11 00:00',
|
|
3438
|
+
dateTo: '2022-05-05 23:59',
|
|
3439
|
+
price: {
|
|
3440
|
+
currency: 'USD',
|
|
3441
|
+
amount: 290.6,
|
|
3442
|
+
},
|
|
3443
|
+
convertedPrice: {
|
|
3444
|
+
currency: 'USD',
|
|
3445
|
+
amount: 290.6,
|
|
3446
|
+
},
|
|
3447
|
+
noShow: false,
|
|
3448
|
+
},
|
|
3449
|
+
{
|
|
3450
|
+
price: {
|
|
3451
|
+
currency: 'USD',
|
|
3452
|
+
amount: 290.6,
|
|
3453
|
+
},
|
|
3454
|
+
convertedPrice: {
|
|
3455
|
+
currency: 'USD',
|
|
3456
|
+
amount: 290.6,
|
|
3457
|
+
},
|
|
3458
|
+
noShow: true,
|
|
3459
|
+
},
|
|
3460
|
+
],
|
|
3461
|
+
taxesAndFeesIncluded: false,
|
|
3462
|
+
salesTerms: [
|
|
3463
|
+
{
|
|
3464
|
+
type: 'CLIENT',
|
|
3465
|
+
price: {
|
|
3466
|
+
currency: 'USD',
|
|
3467
|
+
amount: 508.86,
|
|
3468
|
+
taxesAndFees: [],
|
|
3469
|
+
},
|
|
3470
|
+
originalSupplierCurrency: 'USD',
|
|
3471
|
+
promoCodeApplied: false,
|
|
3472
|
+
priceBreakDowns: [
|
|
3473
|
+
{
|
|
3474
|
+
date: '2022-05-05',
|
|
3475
|
+
weekDayNumber: 4,
|
|
3476
|
+
weekDayName: 'Thursday',
|
|
3477
|
+
price: {
|
|
3478
|
+
currency: 'USD',
|
|
3479
|
+
amount: 209.0,
|
|
3480
|
+
originalCurrency: 'USD',
|
|
3481
|
+
originalAmount: 209.0,
|
|
3482
|
+
},
|
|
3483
|
+
},
|
|
3484
|
+
{
|
|
3485
|
+
date: '2022-05-06',
|
|
3486
|
+
weekDayNumber: 5,
|
|
3487
|
+
weekDayName: 'Friday',
|
|
3488
|
+
price: {
|
|
3489
|
+
currency: 'USD',
|
|
3490
|
+
amount: 199.0,
|
|
3491
|
+
originalCurrency: 'USD',
|
|
3492
|
+
originalAmount: 199.0,
|
|
3493
|
+
},
|
|
3494
|
+
},
|
|
3495
|
+
{
|
|
3496
|
+
name: 'Service Charge',
|
|
3497
|
+
price: {
|
|
3498
|
+
currency: 'USD',
|
|
3499
|
+
amount: 40.8,
|
|
3500
|
+
originalCurrency: 'USD',
|
|
3501
|
+
originalAmount: 40.8,
|
|
3502
|
+
},
|
|
3503
|
+
},
|
|
3504
|
+
{
|
|
3505
|
+
name: 'Room Rate Levy',
|
|
3506
|
+
price: {
|
|
3507
|
+
currency: 'USD',
|
|
3508
|
+
amount: 19.26,
|
|
3509
|
+
originalCurrency: 'USD',
|
|
3510
|
+
originalAmount: 19.26,
|
|
3511
|
+
},
|
|
3512
|
+
},
|
|
3513
|
+
{
|
|
3514
|
+
name: 'VAT',
|
|
3515
|
+
price: {
|
|
3516
|
+
currency: 'USD',
|
|
3517
|
+
amount: 40.8,
|
|
3518
|
+
originalCurrency: 'USD',
|
|
3519
|
+
originalAmount: 40.8,
|
|
3520
|
+
},
|
|
3521
|
+
},
|
|
3522
|
+
],
|
|
3523
|
+
},
|
|
3524
|
+
],
|
|
3525
|
+
rph: '1',
|
|
3526
|
+
guests: {
|
|
3527
|
+
adults: 2,
|
|
3528
|
+
ages: [],
|
|
3529
|
+
},
|
|
3530
|
+
available: false,
|
|
3531
|
+
info: {
|
|
3532
|
+
roomType: 'King Executive Suite',
|
|
3533
|
+
roomTypeServiceId: 2127692,
|
|
3534
|
+
mealTypes: [
|
|
3535
|
+
{
|
|
3536
|
+
otaCode: 14,
|
|
3537
|
+
otaName: 'Room only\t',
|
|
3538
|
+
standardCode: 'RO',
|
|
3539
|
+
standardName: 'Room only',
|
|
3540
|
+
name: 'Room Only',
|
|
3541
|
+
id: 2127698,
|
|
3542
|
+
},
|
|
3543
|
+
],
|
|
3544
|
+
mealOptionsAvailable: false,
|
|
3545
|
+
supplierRoomTypeCode: 'SRTC_1920190',
|
|
3546
|
+
bedroomsQuantity: 1,
|
|
3547
|
+
bathroomsQuantity: 1,
|
|
3548
|
+
bedTypes: [
|
|
3549
|
+
{
|
|
3550
|
+
type: 'King Bed',
|
|
3551
|
+
quantity: 1,
|
|
3552
|
+
alternate: false,
|
|
3553
|
+
},
|
|
3554
|
+
],
|
|
3555
|
+
},
|
|
3556
|
+
nonRefundable: true,
|
|
3557
|
+
roomServices: [
|
|
3558
|
+
'Bathroom Amenities',
|
|
3559
|
+
'Balcony/Terrace',
|
|
3560
|
+
'Alarm Clock',
|
|
3561
|
+
'Cable/Satellite television',
|
|
3562
|
+
'Blackout drapes/curtains',
|
|
3563
|
+
'Linens provided',
|
|
3564
|
+
'Kitchenette',
|
|
3565
|
+
'Eco-friendly housekeeping',
|
|
3566
|
+
'Mini-refrigerator',
|
|
3567
|
+
'Microwave',
|
|
3568
|
+
'In-room safe',
|
|
3569
|
+
'Ironing Board',
|
|
3570
|
+
'Iron',
|
|
3571
|
+
'Free Wi-Fi',
|
|
3572
|
+
'Hairdryer',
|
|
3573
|
+
'Cribs available',
|
|
3574
|
+
'Coffee/Tea maker',
|
|
3575
|
+
'Desk',
|
|
3576
|
+
'Telephone',
|
|
3577
|
+
'Towels provided',
|
|
3578
|
+
'Television',
|
|
3579
|
+
'Seating area with chair',
|
|
3580
|
+
'Private bathroom',
|
|
3581
|
+
'Non-smoking',
|
|
3582
|
+
'Partial ocean view',
|
|
3583
|
+
],
|
|
3584
|
+
extraServices: true,
|
|
3585
|
+
packageOnly: false,
|
|
3586
|
+
hotelCode: 'CMBB',
|
|
3587
|
+
hotelSupplierCode: 'company.2127533',
|
|
3588
|
+
hotelSupplierId: 2127533,
|
|
3589
|
+
promoCode: false,
|
|
3590
|
+
hotDeal: false,
|
|
3591
|
+
percentDiscount: false,
|
|
3592
|
+
specialOffer: false,
|
|
3593
|
+
externalDiscount: false,
|
|
3594
|
+
freeNightsDiscount: false,
|
|
3595
|
+
cardGuarantee: false,
|
|
3596
|
+
onExtraBed: [],
|
|
3597
|
+
onWithoutPlace: [],
|
|
3598
|
+
},
|
|
3599
|
+
],
|
|
3600
|
+
bookAllowed: false,
|
|
3601
|
+
},
|
|
3602
|
+
],
|
|
3603
|
+
}; */
|
|
3604
|
+
exports.default = API;
|
|
3605
|
+
//# sourceMappingURL=API.js.map
|