@mirai/core 0.3.59 → 0.3.61

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.
Files changed (84) hide show
  1. package/build/Core.js +1 -1
  2. package/build/Core.js.map +1 -1
  3. package/build/components/Finder/helpers/getForwarderUrl.js +4 -2
  4. package/build/components/Finder/helpers/getForwarderUrl.js.map +1 -1
  5. package/build/components/Rates/Rates.Footer.js +65 -77
  6. package/build/components/Rates/Rates.Footer.js.map +1 -1
  7. package/build/components/Rates/{Rates.Filter.js → Rates.Header.js} +53 -80
  8. package/build/components/Rates/Rates.Header.js.map +1 -0
  9. package/build/components/Rates/Rates.RoomSelector.js +96 -0
  10. package/build/components/Rates/Rates.RoomSelector.js.map +1 -0
  11. package/build/components/Rates/Rates.Skeleton.js +116 -40
  12. package/build/components/Rates/Rates.Skeleton.js.map +1 -1
  13. package/build/components/Rates/Rates.constants.js +7 -1
  14. package/build/components/Rates/Rates.constants.js.map +1 -1
  15. package/build/components/Rates/Rates.js +90 -47
  16. package/build/components/Rates/Rates.js.map +1 -1
  17. package/build/components/Rates/Rates.l10n.js +16 -7
  18. package/build/components/Rates/Rates.l10n.js.map +1 -1
  19. package/build/components/Rates/Rates.module.css +149 -67
  20. package/build/components/Rates/components/Item/Item.Preview.js +46 -29
  21. package/build/components/Rates/components/Item/Item.Preview.js.map +1 -1
  22. package/build/components/Rates/components/Item/Item.Rates.js +112 -143
  23. package/build/components/Rates/components/Item/Item.Rates.js.map +1 -1
  24. package/build/components/Rates/components/Item/Item.Summary.js +141 -0
  25. package/build/components/Rates/components/Item/Item.Summary.js.map +1 -0
  26. package/build/components/Rates/components/Item/Item.js +67 -64
  27. package/build/components/Rates/components/Item/Item.js.map +1 -1
  28. package/build/components/Rates/components/Item/Item.l10n.js +22 -0
  29. package/build/components/Rates/components/Item/Item.l10n.js.map +1 -1
  30. package/build/components/Rates/components/Item/Item.module.css +80 -104
  31. package/build/components/Rates/components/Item/components/Amenities/Amenities.js +15 -9
  32. package/build/components/Rates/components/Item/components/Amenities/Amenities.js.map +1 -1
  33. package/build/components/Rates/components/Item/components/Amenities/Amenities.module.css +11 -3
  34. package/build/components/Rates/components/Item/components/Discount/Discount.js +14 -13
  35. package/build/components/Rates/components/Item/components/Discount/Discount.js.map +1 -1
  36. package/build/components/Rates/components/Item/components/Discount/Discount.module.css +4 -3
  37. package/build/components/Rates/components/Item/components/Features/Features.js +4 -10
  38. package/build/components/Rates/components/Item/components/Features/Features.js.map +1 -1
  39. package/build/components/Rates/components/Item/components/Features/Features.module.css +0 -5
  40. package/build/components/Rates/components/Item/components/ModalInfo/ModalInfo.js +34 -6
  41. package/build/components/Rates/components/Item/components/ModalInfo/ModalInfo.js.map +1 -1
  42. package/build/components/Rates/components/Item/components/ModalInfo/ModalInfo.module.css +7 -0
  43. package/build/components/Rates/components/Item/components/ModalRateInfo/ModalRateInfo.js +18 -9
  44. package/build/components/Rates/components/Item/components/ModalRateInfo/ModalRateInfo.js.map +1 -1
  45. package/build/components/Rates/components/Item/components/ModalRateInfo/ModalRateInfo.module.css +17 -1
  46. package/build/components/Rates/components/Item/components/ModalUrl/ModalUrl.module.css +1 -1
  47. package/build/components/Rates/components/Item/components/Option/Option.js +72 -0
  48. package/build/components/Rates/components/Item/components/Option/Option.js.map +1 -0
  49. package/build/components/Rates/components/Item/components/Option/Option.module.css +24 -0
  50. package/build/components/Rates/components/Item/components/Option/index.js +17 -0
  51. package/build/components/Rates/components/Item/components/Option/index.js.map +1 -0
  52. package/build/components/Rates/components/Item/components/index.js +11 -0
  53. package/build/components/Rates/components/Item/components/index.js.map +1 -1
  54. package/build/components/Rates/helpers/getForwarderUrl.js +23 -12
  55. package/build/components/Rates/helpers/getForwarderUrl.js.map +1 -1
  56. package/build/components/helpers/ICON.js +10 -2
  57. package/build/components/helpers/ICON.js.map +1 -1
  58. package/build/components/helpers/index.js +11 -0
  59. package/build/components/helpers/index.js.map +1 -1
  60. package/build/components/helpers/opacity.js +17 -0
  61. package/build/components/helpers/opacity.js.map +1 -0
  62. package/build/index.js +1 -1
  63. package/build/index.js.map +1 -1
  64. package/build/services/Rates/__tests__/__mocks__/rates-response-cancel-types.json +1662 -0
  65. package/build/services/Rates/__tests__/__mocks__/rates-response-no-taxes-no-local.json +296 -510
  66. package/build/services/Rates/__tests__/__mocks__/rates-response-no-taxes.json +895 -1795
  67. package/build/services/Rates/__tests__/__mocks__/rates-response.json +197 -369
  68. package/build/services/Rates/__tests__/__mocks__/rates-success-cancel-types.json +32481 -0
  69. package/build/services/Rates/constants.js +18 -1
  70. package/build/services/Rates/constants.js.map +1 -1
  71. package/build/services/Rates/get.js +41 -112
  72. package/build/services/Rates/get.js.map +1 -1
  73. package/build/services/Rates/helpers/getIncrements.js +69 -0
  74. package/build/services/Rates/helpers/getIncrements.js.map +1 -0
  75. package/build/services/Rates/helpers/index.js +22 -0
  76. package/build/services/Rates/helpers/index.js.map +1 -1
  77. package/build/services/Rates/helpers/parseBoards.js +156 -0
  78. package/build/services/Rates/helpers/parseBoards.js.map +1 -0
  79. package/build/services/Rates/helpers/parseExternalToken.js +24 -0
  80. package/build/services/Rates/helpers/parseExternalToken.js.map +1 -0
  81. package/package.json +1 -1
  82. package/public/App.module.css +5 -0
  83. package/public/themes/monalisa.theme.css +3 -0
  84. package/build/components/Rates/Rates.Filter.js.map +0 -1
@@ -1,109 +1,270 @@
1
1
  {
2
- "assistant": false,
2
+ "infantAge": null,
3
3
  "items": [
4
4
  {
5
5
  "amenities": [
6
+ { "exclusive": false, "id": 2, "text": "Refrigerator" },
7
+ { "exclusive": false, "id": 5, "text": "Iron" },
8
+ { "exclusive": false, "id": 69, "text": "Desk" },
9
+ { "exclusive": false, "id": 11, "text": "Radio" },
10
+ { "exclusive": false, "id": 13, "text": "Television" },
11
+ { "exclusive": false, "id": 14, "text": "Telephone" },
12
+ { "exclusive": false, "id": 15, "text": "Air conditioning" },
13
+ { "exclusive": false, "id": 65, "text": "Heating" },
14
+ { "exclusive": false, "id": 16, "text": "Free mini-bar" },
15
+ { "exclusive": false, "id": 18, "text": "Free safe" },
16
+ { "exclusive": false, "id": 22, "text": "Free Wi-Fi Internet" },
17
+ { "exclusive": false, "id": 26, "text": "Wooden floor" },
18
+ { "exclusive": false, "id": 100, "text": "24h luggage storage" },
19
+ { "exclusive": false, "id": 119, "text": "Toiletries" },
20
+ { "exclusive": false, "id": 121, "text": "Pillow menu" },
21
+ { "exclusive": false, "id": 51, "text": "Shower" },
22
+ { "exclusive": false, "id": 57, "text": "Hairdryer" },
23
+ { "exclusive": false, "id": 58, "text": "Magnifying mirror" }
24
+ ],
25
+ "availability": 5,
26
+ "bedDisposition": [[{ "amount": 2, "type": 1 }]],
27
+ "bedTypes": [1],
28
+ "cancellations": [
29
+ {
30
+ "id": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
31
+ "caption": "until Feb 5",
32
+ "name": "Free cancellation",
33
+ "title": "Cancellation with no penalty up to some hours before arrival.",
34
+ "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled.",
35
+ "price": 0
36
+ }
37
+ ],
38
+ "rates": [
6
39
  {
7
- "exclusive": false,
8
- "id": 2,
9
- "text": "Refrigerator"
10
- },
11
- {
12
- "exclusive": false,
13
- "id": 5,
14
- "text": "Iron"
15
- },
16
- {
17
- "exclusive": false,
18
- "id": 69,
19
- "text": "Desk"
20
- },
21
- {
22
- "exclusive": false,
23
- "id": 11,
24
- "text": "Radio"
25
- },
26
- {
27
- "exclusive": false,
28
- "id": 13,
29
- "text": "Television"
30
- },
31
- {
32
- "exclusive": false,
33
- "id": 14,
34
- "text": "Telephone"
40
+ "id": "4824--3862--2283b0--206539",
41
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
42
+ "name": "Flexible Rate",
43
+ "offer": true,
44
+ "price": 0
35
45
  },
36
46
  {
37
- "exclusive": false,
38
- "id": 15,
39
- "text": "Air conditioning"
47
+ "id": "4824--3862--2283b0--217946",
48
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
49
+ "name": "Flexible Rate, prepayment option",
50
+ "offer": true,
51
+ "price": 12.600000000000023
40
52
  },
41
53
  {
42
- "exclusive": false,
43
- "id": 65,
44
- "text": "Heating"
54
+ "id": "4824--3862--2283b0--206542",
55
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
56
+ "name": "Special Offer, Parking included",
57
+ "offer": true,
58
+ "price": 87.60000000000002
45
59
  },
46
60
  {
47
- "exclusive": false,
48
- "id": 16,
49
- "text": "Free mini-bar"
50
- },
61
+ "id": "4824--3862--2283b0",
62
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
63
+ "name": "Flexible Rate",
64
+ "offer": false,
65
+ "price": 120.60000000000002
66
+ }
67
+ ],
68
+ "boards": [
51
69
  {
52
- "exclusive": false,
53
- "id": 18,
54
- "text": "Free safe"
70
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
71
+ "rateId": "4824--3862--2283b0--206539",
72
+ "included": [],
73
+ "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
74
+ "restrictions": [],
75
+ "basePrice": 407.4,
76
+ "name": "Room only",
77
+ "dayPrice": 135.8,
78
+ "days": [
79
+ { "deal": "206539", "price": 126.1, "value": "05/02/2024" },
80
+ { "deal": "206539", "price": 140.65, "value": "06/02/2024" },
81
+ { "deal": "206539", "price": 140.65, "value": "07/02/2024" }
82
+ ],
83
+ "deals": ["206539"],
84
+ "discount": { "percentage": 3, "breakdown": [{ "type": 1, "value": 12.6 }] },
85
+ "id": "4824--3862--2283b0--0--206539",
86
+ "originalPrice": 420,
87
+ "price": 407.4,
88
+ "taxes": 40.74,
89
+ "increment": 0
55
90
  },
56
91
  {
57
- "exclusive": false,
58
- "id": 22,
59
- "text": "Free Wi-Fi Internet"
92
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
93
+ "rateId": "4824--3862--2283b0--217946",
94
+ "included": ["100% ONLINE PREPAYMENT"],
95
+ "paymentConditions": "Prepayment required: 100%: Online secure payment",
96
+ "restrictions": [],
97
+ "basePrice": 420,
98
+ "name": "Room only",
99
+ "dayPrice": 140,
100
+ "days": [
101
+ { "deal": "217946", "price": 130, "value": "05/02/2024" },
102
+ { "deal": "217946", "price": 145, "value": "06/02/2024" },
103
+ { "deal": "217946", "price": 145, "value": "07/02/2024" }
104
+ ],
105
+ "deals": ["217946"],
106
+ "discount": { "percentage": 0, "breakdown": [] },
107
+ "id": "4824--3862--2283b0--0--217946",
108
+ "originalPrice": 420,
109
+ "price": 420,
110
+ "taxes": 42,
111
+ "increment": 0
60
112
  },
61
113
  {
62
- "exclusive": false,
63
- "id": 26,
64
- "text": "Wooden floor"
114
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
115
+ "rateId": "4824--3862--2283b0--206542",
116
+ "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
117
+ "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
118
+ "restrictions": [],
119
+ "basePrice": 495,
120
+ "name": "Room only",
121
+ "dayPrice": 165,
122
+ "days": [
123
+ { "deal": "206542", "price": 155, "value": "05/02/2024" },
124
+ { "deal": "206542", "price": 170, "value": "06/02/2024" },
125
+ { "deal": "206542", "price": 170, "value": "07/02/2024" }
126
+ ],
127
+ "deals": ["206542"],
128
+ "discount": { "percentage": 0, "breakdown": [] },
129
+ "id": "4824--3862--2283b0--0--206542",
130
+ "originalPrice": 495,
131
+ "price": 495,
132
+ "taxes": 49.5,
133
+ "increment": 0
65
134
  },
66
135
  {
67
- "exclusive": false,
68
- "id": 100,
69
- "text": "24h luggage storage"
136
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
137
+ "rateId": "4824--3862--2283b0",
138
+ "included": [],
139
+ "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
140
+ "restrictions": [],
141
+ "basePrice": 528,
142
+ "name": "Breakfast included",
143
+ "dayPrice": 176,
144
+ "days": [
145
+ { "deal": null, "price": 166, "value": "05/02/2024" },
146
+ { "deal": null, "price": 181, "value": "06/02/2024" },
147
+ { "deal": null, "price": 181, "value": "07/02/2024" }
148
+ ],
149
+ "deals": [],
150
+ "discount": { "percentage": 0, "breakdown": [] },
151
+ "id": "4824--3862--2283b0--1",
152
+ "originalPrice": 528,
153
+ "price": 528,
154
+ "taxes": 52.8,
155
+ "increment": 0
70
156
  },
71
157
  {
72
- "exclusive": false,
73
- "id": 119,
74
- "text": "Toiletries"
158
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
159
+ "rateId": "4824--3862--2283b0--217946",
160
+ "included": ["100% ONLINE PREPAYMENT"],
161
+ "paymentConditions": "Prepayment required: 100%: Online secure payment",
162
+ "restrictions": [],
163
+ "basePrice": 528,
164
+ "name": "Breakfast included",
165
+ "dayPrice": 176,
166
+ "days": [
167
+ { "deal": "217946", "price": 166, "value": "05/02/2024" },
168
+ { "deal": "217946", "price": 181, "value": "06/02/2024" },
169
+ { "deal": "217946", "price": 181, "value": "07/02/2024" }
170
+ ],
171
+ "deals": ["217946"],
172
+ "discount": { "percentage": 0, "breakdown": [] },
173
+ "id": "4824--3862--2283b0--1--217946",
174
+ "originalPrice": 528,
175
+ "price": 528,
176
+ "taxes": 52.8,
177
+ "increment": 108
75
178
  },
76
179
  {
77
- "exclusive": false,
78
- "id": 121,
79
- "text": "Pillow menu"
180
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
181
+ "rateId": "4824--3862--2283b0--206542",
182
+ "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
183
+ "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
184
+ "restrictions": [],
185
+ "basePrice": 603,
186
+ "name": "Breakfast included",
187
+ "dayPrice": 201,
188
+ "days": [
189
+ { "deal": "206542", "price": 191, "value": "05/02/2024" },
190
+ { "deal": "206542", "price": 206, "value": "06/02/2024" },
191
+ { "deal": "206542", "price": 206, "value": "07/02/2024" }
192
+ ],
193
+ "deals": ["206542"],
194
+ "discount": { "percentage": 0, "breakdown": [] },
195
+ "id": "4824--3862--2283b0--1--206542",
196
+ "originalPrice": 603,
197
+ "price": 603,
198
+ "taxes": 60.3,
199
+ "increment": 108
80
200
  },
81
201
  {
82
- "exclusive": false,
83
- "id": 51,
84
- "text": "Shower"
202
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
203
+ "rateId": "4824--3862--2283b0",
204
+ "included": [],
205
+ "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
206
+ "restrictions": [],
207
+ "basePrice": 800.7,
208
+ "name": "Half board",
209
+ "dayPrice": 266.9,
210
+ "days": [
211
+ { "deal": null, "price": 256.9, "value": "05/02/2024" },
212
+ { "deal": null, "price": 271.9, "value": "06/02/2024" },
213
+ { "deal": null, "price": 271.9, "value": "07/02/2024" }
214
+ ],
215
+ "deals": [],
216
+ "discount": { "percentage": 0, "breakdown": [] },
217
+ "id": "4824--3862--2283b0--2",
218
+ "originalPrice": 800.7,
219
+ "price": 800.7,
220
+ "taxes": 80.07,
221
+ "increment": 272.70000000000005
85
222
  },
86
223
  {
87
- "exclusive": false,
88
- "id": 57,
89
- "text": "Hairdryer"
224
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
225
+ "rateId": "4824--3862--2283b0--217946",
226
+ "included": ["100% ONLINE PREPAYMENT"],
227
+ "paymentConditions": "Prepayment required: 100%: Online secure payment",
228
+ "restrictions": [],
229
+ "basePrice": 800.7,
230
+ "name": "Half board",
231
+ "dayPrice": 266.9,
232
+ "days": [
233
+ { "deal": "217946", "price": 256.9, "value": "05/02/2024" },
234
+ { "deal": "217946", "price": 271.9, "value": "06/02/2024" },
235
+ { "deal": "217946", "price": 271.9, "value": "07/02/2024" }
236
+ ],
237
+ "deals": ["217946"],
238
+ "discount": { "percentage": 0, "breakdown": [] },
239
+ "id": "4824--3862--2283b0--2--217946",
240
+ "originalPrice": 800.7,
241
+ "price": 800.7,
242
+ "taxes": 80.07,
243
+ "increment": 380.70000000000005
90
244
  },
91
245
  {
92
- "exclusive": false,
93
- "id": 58,
94
- "text": "Magnifying mirror"
246
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
247
+ "rateId": "4824--3862--2283b0--206542",
248
+ "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
249
+ "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
250
+ "restrictions": [],
251
+ "basePrice": 875.7,
252
+ "name": "Half board",
253
+ "dayPrice": 291.9,
254
+ "days": [
255
+ { "deal": "206542", "price": 281.9, "value": "05/02/2024" },
256
+ { "deal": "206542", "price": 296.9, "value": "06/02/2024" },
257
+ { "deal": "206542", "price": 296.9, "value": "07/02/2024" }
258
+ ],
259
+ "deals": ["206542"],
260
+ "discount": { "percentage": 0, "breakdown": [] },
261
+ "id": "4824--3862--2283b0--2--206542",
262
+ "originalPrice": 875.7,
263
+ "price": 875.7,
264
+ "taxes": 87.57,
265
+ "increment": 380.70000000000005
95
266
  }
96
267
  ],
97
- "availability": 5,
98
- "bedDisposition": [
99
- [
100
- {
101
- "amount": 2,
102
- "type": 1
103
- }
104
- ]
105
- ],
106
- "bedTypes": [1],
107
268
  "description": "Spacious room with two beds, ideal for long stays, along with all types of comforts and services.",
108
269
  "images": [
109
270
  {
@@ -144,492 +305,273 @@
144
305
  ],
145
306
  "name": "Deluxe Twin Room",
146
307
  "maxOccupation": 2,
308
+ "size": "20 m²"
309
+ },
310
+ {
311
+ "amenities": [
312
+ { "exclusive": false, "id": 2, "text": "Refrigerator" },
313
+ { "exclusive": false, "id": 5, "text": "Iron" },
314
+ { "exclusive": false, "id": 69, "text": "Desk" },
315
+ { "exclusive": false, "id": 10, "text": "Balcony" },
316
+ { "exclusive": false, "id": 11, "text": "Radio" },
317
+ { "exclusive": false, "id": 13, "text": "Television" },
318
+ { "exclusive": false, "id": 14, "text": "Telephone" },
319
+ { "exclusive": false, "id": 15, "text": "Air conditioning" },
320
+ { "exclusive": false, "id": 65, "text": "Heating" },
321
+ { "exclusive": false, "id": 16, "text": "Free mini-bar" },
322
+ { "exclusive": false, "id": 18, "text": "Free safe" },
323
+ { "exclusive": false, "id": 22, "text": "Free Wi-Fi Internet" },
324
+ { "exclusive": false, "id": 26, "text": "Wooden floor" },
325
+ { "exclusive": false, "id": 100, "text": "24h luggage storage" },
326
+ { "exclusive": false, "id": 119, "text": "Toiletries" },
327
+ { "exclusive": false, "id": 121, "text": "Pillow menu" },
328
+ { "exclusive": false, "id": 51, "text": "Shower" },
329
+ { "exclusive": false, "id": 57, "text": "Hairdryer" },
330
+ { "exclusive": false, "id": 58, "text": "Magnifying mirror" }
331
+ ],
332
+ "availability": 5,
333
+ "bedDisposition": [[{ "amount": 1, "type": 2 }]],
334
+ "bedTypes": [2],
335
+ "cancellations": [
336
+ {
337
+ "id": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
338
+ "caption": "until Feb 5",
339
+ "name": "Free cancellation",
340
+ "title": "Cancellation with no penalty up to some hours before arrival.",
341
+ "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled.",
342
+ "price": 0
343
+ }
344
+ ],
147
345
  "rates": [
148
346
  {
149
- "amount": [1, 5],
347
+ "id": "4824--4103--2280b0--206539",
348
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
349
+ "name": "Flexible Rate",
350
+ "offer": true,
351
+ "price": 0
352
+ },
353
+ {
354
+ "id": "4824--4103--2280b0--217946",
355
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
356
+ "name": "Flexible Rate, prepayment option",
357
+ "offer": true,
358
+ "price": 12.600000000000023
359
+ },
360
+ {
361
+ "id": "4824--4103--2280b0--206542",
362
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
363
+ "name": "Special Offer, Parking included",
364
+ "offer": true,
365
+ "price": 87.60000000000002
366
+ },
367
+ {
368
+ "id": "4824--4103--2280b0",
369
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
370
+ "name": "Flexible Rate",
371
+ "offer": false,
372
+ "price": 120.60000000000002
373
+ }
374
+ ],
375
+ "boards": [
376
+ {
377
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
378
+ "rateId": "4824--4103--2280b0--206539",
379
+ "included": [],
380
+ "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
381
+ "restrictions": [],
150
382
  "basePrice": 407.4,
151
- "boardName": "Room only",
152
- "cancellation": {
153
- "hint": "Free cancellation until Feb 5",
154
- "title": "Cancellation with no penalty up to some hours before arrival.",
155
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
156
- },
383
+ "name": "Room only",
157
384
  "dayPrice": 135.8,
158
385
  "days": [
159
- {
160
- "deal": "206539",
161
- "price": 126.1,
162
- "value": "05/02/2024"
163
- },
164
- {
165
- "deal": "206539",
166
- "price": 140.65,
167
- "value": "06/02/2024"
168
- },
169
- {
170
- "deal": "206539",
171
- "price": 140.65,
172
- "value": "07/02/2024"
173
- }
386
+ { "deal": "206539", "price": 126.1, "value": "05/02/2024" },
387
+ { "deal": "206539", "price": 140.65, "value": "06/02/2024" },
388
+ { "deal": "206539", "price": 140.65, "value": "07/02/2024" }
174
389
  ],
175
390
  "deals": ["206539"],
176
- "discount": {
177
- "percentage": 3,
178
- "breakdown": [
179
- {
180
- "type": 1,
181
- "value": 12.6
182
- }
183
- ]
184
- },
185
- "id": "4824--3862--2283b0--0--206539",
186
- "included": [],
391
+ "discount": { "percentage": 3, "breakdown": [{ "type": 1, "value": 12.6 }] },
392
+ "id": "4824--4103--2280b0--0--206539",
187
393
  "originalPrice": 420,
188
394
  "price": 407.4,
189
- "name": "Flexible Rate",
190
- "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
191
- "restrictions": [],
192
- "taxes": 40.74
395
+ "taxes": 40.74,
396
+ "increment": 0
193
397
  },
194
398
  {
195
- "amount": [1, 5],
399
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
400
+ "rateId": "4824--4103--2280b0--217946",
401
+ "included": ["100% ONLINE PREPAYMENT"],
402
+ "paymentConditions": "Prepayment required: 100%: Online secure payment",
403
+ "restrictions": [],
196
404
  "basePrice": 420,
197
- "boardName": "Room only",
198
- "cancellation": {
199
- "hint": "Free cancellation until Feb 5",
200
- "title": "Cancellation with no penalty up to some hours before arrival.",
201
- "text": "You can cancel your reservation for free until 12:00 of the Feb 05, 2024. If you cancel your reservation after this moment, the first night will be charged on your card. The same will apply if you leave the hotel before the end of your reservation or if you do not show up (reservation is kept up to the 1st night)."
202
- },
405
+ "name": "Room only",
203
406
  "dayPrice": 140,
204
407
  "days": [
205
- {
206
- "deal": "217946",
207
- "price": 130,
208
- "value": "05/02/2024"
209
- },
210
- {
211
- "deal": "217946",
212
- "price": 145,
213
- "value": "06/02/2024"
214
- },
215
- {
216
- "deal": "217946",
217
- "price": 145,
218
- "value": "07/02/2024"
219
- }
408
+ { "deal": "217946", "price": 130, "value": "05/02/2024" },
409
+ { "deal": "217946", "price": 145, "value": "06/02/2024" },
410
+ { "deal": "217946", "price": 145, "value": "07/02/2024" }
220
411
  ],
221
412
  "deals": ["217946"],
222
- "discount": {
223
- "percentage": 0,
224
- "breakdown": []
225
- },
226
- "id": "4824--3862--2283b0--0--217946",
227
- "included": ["100% ONLINE PREPAYMENT"],
413
+ "discount": { "percentage": 0, "breakdown": [] },
414
+ "id": "4824--4103--2280b0--0--217946",
228
415
  "originalPrice": 420,
229
416
  "price": 420,
230
- "name": "Flexible Rate, prepayment option",
231
- "paymentConditions": "Prepayment required: 100%: Online secure payment",
417
+ "taxes": 42,
418
+ "increment": 0
419
+ },
420
+ {
421
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
422
+ "rateId": "4824--4103--2280b0--206542",
423
+ "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
424
+ "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
232
425
  "restrictions": [],
233
- "taxes": 42
426
+ "basePrice": 495,
427
+ "name": "Room only",
428
+ "dayPrice": 165,
429
+ "days": [
430
+ { "deal": "206542", "price": 155, "value": "05/02/2024" },
431
+ { "deal": "206542", "price": 170, "value": "06/02/2024" },
432
+ { "deal": "206542", "price": 170, "value": "07/02/2024" }
433
+ ],
434
+ "deals": ["206542"],
435
+ "discount": { "percentage": 0, "breakdown": [] },
436
+ "id": "4824--4103--2280b0--0--206542",
437
+ "originalPrice": 495,
438
+ "price": 495,
439
+ "taxes": 49.5,
440
+ "increment": 0
234
441
  },
235
442
  {
236
- "amount": [1, 5],
443
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
444
+ "rateId": "4824--4103--2280b0",
445
+ "included": [],
446
+ "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
447
+ "restrictions": [],
237
448
  "basePrice": 528,
238
- "boardName": "Breakfast included",
239
- "cancellation": {
240
- "hint": "Free cancellation until Feb 5",
241
- "title": "Cancellation with no penalty up to some hours before arrival.",
242
- "text": "You can cancel your reservation for free until 12:00 of the Feb 05, 2024. If you cancel your reservation after this moment, the first night will be charged on your card. The same will apply if you leave the hotel before the end of your reservation or if you do not show up (reservation is kept up to the 1st night)."
243
- },
449
+ "name": "Breakfast included",
244
450
  "dayPrice": 176,
245
451
  "days": [
246
- {
247
- "deal": "217946",
248
- "price": 166,
249
- "value": "05/02/2024"
250
- },
251
- {
252
- "deal": "217946",
253
- "price": 181,
254
- "value": "06/02/2024"
255
- },
256
- {
257
- "deal": "217946",
258
- "price": 181,
259
- "value": "07/02/2024"
260
- }
452
+ { "deal": null, "price": 166, "value": "05/02/2024" },
453
+ { "deal": null, "price": 181, "value": "06/02/2024" },
454
+ { "deal": null, "price": 181, "value": "07/02/2024" }
261
455
  ],
262
- "deals": ["217946"],
263
- "discount": {
264
- "percentage": 0,
265
- "breakdown": []
266
- },
267
- "id": "4824--3862--2283b0--1--217946",
268
- "included": ["100% ONLINE PREPAYMENT"],
456
+ "deals": [],
457
+ "discount": { "percentage": 0, "breakdown": [] },
458
+ "id": "4824--4103--2280b0--1",
269
459
  "originalPrice": 528,
270
460
  "price": 528,
271
- "name": "Flexible Rate, prepayment option",
272
- "paymentConditions": "Prepayment required: 100%: Online secure payment",
273
- "restrictions": [],
274
- "taxes": 52.8
461
+ "taxes": 52.8,
462
+ "increment": 0
275
463
  },
276
464
  {
277
- "amount": [1, 5],
278
- "basePrice": 800.7,
279
- "boardName": "Half board",
280
- "cancellation": {
281
- "hint": "Free cancellation until Feb 5",
282
- "title": "Cancellation with no penalty up to some hours before arrival.",
283
- "text": "You can cancel your reservation for free until 12:00 of the Feb 05, 2024. If you cancel your reservation after this moment, the first night will be charged on your card. The same will apply if you leave the hotel before the end of your reservation or if you do not show up (reservation is kept up to the 1st night)."
284
- },
285
- "dayPrice": 266.9,
286
- "days": [
287
- {
288
- "deal": "217946",
289
- "price": 256.9,
290
- "value": "05/02/2024"
291
- },
292
- {
293
- "deal": "217946",
294
- "price": 271.9,
295
- "value": "06/02/2024"
296
- },
297
- {
298
- "deal": "217946",
299
- "price": 271.9,
300
- "value": "07/02/2024"
301
- }
302
- ],
303
- "deals": ["217946"],
304
- "discount": {
305
- "percentage": 0,
306
- "breakdown": []
307
- },
308
- "id": "4824--3862--2283b0--2--217946",
465
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
466
+ "rateId": "4824--4103--2280b0--217946",
309
467
  "included": ["100% ONLINE PREPAYMENT"],
310
- "originalPrice": 800.7,
311
- "price": 800.7,
312
- "name": "Flexible Rate, prepayment option",
313
468
  "paymentConditions": "Prepayment required: 100%: Online secure payment",
314
469
  "restrictions": [],
315
- "taxes": 80.07
316
- },
317
- {
318
- "amount": [1, 5],
319
- "basePrice": 495,
320
- "boardName": "Room only",
321
- "cancellation": {
322
- "hint": "Free cancellation until Feb 5",
323
- "title": "Cancellation with no penalty up to some hours before arrival.",
324
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
325
- },
326
- "dayPrice": 165,
470
+ "basePrice": 528,
471
+ "name": "Breakfast included",
472
+ "dayPrice": 176,
327
473
  "days": [
328
- {
329
- "deal": "206542",
330
- "price": 155,
331
- "value": "05/02/2024"
332
- },
333
- {
334
- "deal": "206542",
335
- "price": 170,
336
- "value": "06/02/2024"
337
- },
338
- {
339
- "deal": "206542",
340
- "price": 170,
341
- "value": "07/02/2024"
342
- }
474
+ { "deal": "217946", "price": 166, "value": "05/02/2024" },
475
+ { "deal": "217946", "price": 181, "value": "06/02/2024" },
476
+ { "deal": "217946", "price": 181, "value": "07/02/2024" }
343
477
  ],
344
- "deals": ["206542"],
345
- "discount": {
346
- "percentage": 0,
347
- "breakdown": []
348
- },
349
- "id": "4824--3862--2283b0--0--206542",
478
+ "deals": ["217946"],
479
+ "discount": { "percentage": 0, "breakdown": [] },
480
+ "id": "4824--4103--2280b0--1--217946",
481
+ "originalPrice": 528,
482
+ "price": 528,
483
+ "taxes": 52.8,
484
+ "increment": 108
485
+ },
486
+ {
487
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
488
+ "rateId": "4824--4103--2280b0--206542",
350
489
  "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
351
- "originalPrice": 495,
352
- "price": 495,
353
- "name": "Special Offer, Parking included",
354
490
  "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
355
491
  "restrictions": [],
356
- "taxes": 49.5
357
- },
358
- {
359
- "amount": [1, 5],
360
492
  "basePrice": 603,
361
- "boardName": "Breakfast included",
362
- "cancellation": {
363
- "hint": "Free cancellation until Feb 5",
364
- "title": "Cancellation with no penalty up to some hours before arrival.",
365
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
366
- },
493
+ "name": "Breakfast included",
367
494
  "dayPrice": 201,
368
495
  "days": [
369
- {
370
- "deal": "206542",
371
- "price": 191,
372
- "value": "05/02/2024"
373
- },
374
- {
375
- "deal": "206542",
376
- "price": 206,
377
- "value": "06/02/2024"
378
- },
379
- {
380
- "deal": "206542",
381
- "price": 206,
382
- "value": "07/02/2024"
383
- }
496
+ { "deal": "206542", "price": 191, "value": "05/02/2024" },
497
+ { "deal": "206542", "price": 206, "value": "06/02/2024" },
498
+ { "deal": "206542", "price": 206, "value": "07/02/2024" }
384
499
  ],
385
500
  "deals": ["206542"],
386
- "discount": {
387
- "percentage": 0,
388
- "breakdown": []
389
- },
390
- "id": "4824--3862--2283b0--1--206542",
391
- "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
501
+ "discount": { "percentage": 0, "breakdown": [] },
502
+ "id": "4824--4103--2280b0--1--206542",
392
503
  "originalPrice": 603,
393
504
  "price": 603,
394
- "name": "Special Offer, Parking included",
395
- "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
396
- "restrictions": [],
397
- "taxes": 60.3
505
+ "taxes": 60.3,
506
+ "increment": 108
398
507
  },
399
508
  {
400
- "amount": [1, 5],
401
- "basePrice": 875.7,
402
- "boardName": "Half board",
403
- "cancellation": {
404
- "hint": "Free cancellation until Feb 5",
405
- "title": "Cancellation with no penalty up to some hours before arrival.",
406
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
407
- },
408
- "dayPrice": 291.9,
409
- "days": [
410
- {
411
- "deal": "206542",
412
- "price": 281.9,
413
- "value": "05/02/2024"
414
- },
415
- {
416
- "deal": "206542",
417
- "price": 296.9,
418
- "value": "06/02/2024"
419
- },
420
- {
421
- "deal": "206542",
422
- "price": 296.9,
423
- "value": "07/02/2024"
424
- }
425
- ],
426
- "deals": ["206542"],
427
- "discount": {
428
- "percentage": 0,
429
- "breakdown": []
430
- },
431
- "id": "4824--3862--2283b0--2--206542",
432
- "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
433
- "originalPrice": 875.7,
434
- "price": 875.7,
435
- "name": "Special Offer, Parking included",
509
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
510
+ "rateId": "4824--4103--2280b0",
511
+ "included": [],
436
512
  "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
437
513
  "restrictions": [],
438
- "taxes": 87.57
439
- },
440
- {
441
- "amount": [1, 5],
442
- "basePrice": 528,
443
- "boardName": "Breakfast included",
444
- "cancellation": {
445
- "hint": "Free cancellation until Feb 5",
446
- "title": "Cancellation with no penalty up to some hours before arrival.",
447
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
448
- },
449
- "dayPrice": 176,
514
+ "basePrice": 800.7,
515
+ "name": "Half board",
516
+ "dayPrice": 266.9,
450
517
  "days": [
451
- {
452
- "deal": null,
453
- "price": 166,
454
- "value": "05/02/2024"
455
- },
456
- {
457
- "deal": null,
458
- "price": 181,
459
- "value": "06/02/2024"
460
- },
461
- {
462
- "deal": null,
463
- "price": 181,
464
- "value": "07/02/2024"
465
- }
518
+ { "deal": null, "price": 256.9, "value": "05/02/2024" },
519
+ { "deal": null, "price": 271.9, "value": "06/02/2024" },
520
+ { "deal": null, "price": 271.9, "value": "07/02/2024" }
466
521
  ],
467
522
  "deals": [],
468
- "discount": {
469
- "percentage": 0,
470
- "breakdown": []
471
- },
472
- "id": "4824--3862--2283b0--1",
473
- "included": [],
474
- "originalPrice": 528,
475
- "price": 528,
476
- "name": "Flexible Rate",
477
- "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
478
- "restrictions": [],
479
- "taxes": 52.8
523
+ "discount": { "percentage": 0, "breakdown": [] },
524
+ "id": "4824--4103--2280b0--2",
525
+ "originalPrice": 800.7,
526
+ "price": 800.7,
527
+ "taxes": 80.07,
528
+ "increment": 272.70000000000005
480
529
  },
481
530
  {
482
- "amount": [1, 5],
531
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
532
+ "rateId": "4824--4103--2280b0--217946",
533
+ "included": ["100% ONLINE PREPAYMENT"],
534
+ "paymentConditions": "Prepayment required: 100%: Online secure payment",
535
+ "restrictions": [],
483
536
  "basePrice": 800.7,
484
- "boardName": "Half board",
485
- "cancellation": {
486
- "hint": "Free cancellation until Feb 5",
487
- "title": "Cancellation with no penalty up to some hours before arrival.",
488
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
489
- },
537
+ "name": "Half board",
490
538
  "dayPrice": 266.9,
491
539
  "days": [
492
- {
493
- "deal": null,
494
- "price": 256.9,
495
- "value": "05/02/2024"
496
- },
497
- {
498
- "deal": null,
499
- "price": 271.9,
500
- "value": "06/02/2024"
501
- },
502
- {
503
- "deal": null,
504
- "price": 271.9,
505
- "value": "07/02/2024"
506
- }
540
+ { "deal": "217946", "price": 256.9, "value": "05/02/2024" },
541
+ { "deal": "217946", "price": 271.9, "value": "06/02/2024" },
542
+ { "deal": "217946", "price": 271.9, "value": "07/02/2024" }
507
543
  ],
508
- "deals": [],
509
- "discount": {
510
- "percentage": 0,
511
- "breakdown": []
512
- },
513
- "id": "4824--3862--2283b0--2",
514
- "included": [],
544
+ "deals": ["217946"],
545
+ "discount": { "percentage": 0, "breakdown": [] },
546
+ "id": "4824--4103--2280b0--2--217946",
515
547
  "originalPrice": 800.7,
516
548
  "price": 800.7,
517
- "name": "Flexible Rate",
518
- "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
519
- "restrictions": [],
520
- "taxes": 80.07
521
- }
522
- ],
523
- "size": "20 m²"
524
- },
525
- {
526
- "amenities": [
527
- {
528
- "exclusive": false,
529
- "id": 2,
530
- "text": "Refrigerator"
531
- },
532
- {
533
- "exclusive": false,
534
- "id": 5,
535
- "text": "Iron"
536
- },
537
- {
538
- "exclusive": false,
539
- "id": 69,
540
- "text": "Desk"
541
- },
542
- {
543
- "exclusive": false,
544
- "id": 10,
545
- "text": "Balcony"
546
- },
547
- {
548
- "exclusive": false,
549
- "id": 11,
550
- "text": "Radio"
551
- },
552
- {
553
- "exclusive": false,
554
- "id": 13,
555
- "text": "Television"
556
- },
557
- {
558
- "exclusive": false,
559
- "id": 14,
560
- "text": "Telephone"
561
- },
562
- {
563
- "exclusive": false,
564
- "id": 15,
565
- "text": "Air conditioning"
566
- },
567
- {
568
- "exclusive": false,
569
- "id": 65,
570
- "text": "Heating"
571
- },
572
- {
573
- "exclusive": false,
574
- "id": 16,
575
- "text": "Free mini-bar"
576
- },
577
- {
578
- "exclusive": false,
579
- "id": 18,
580
- "text": "Free safe"
581
- },
582
- {
583
- "exclusive": false,
584
- "id": 22,
585
- "text": "Free Wi-Fi Internet"
549
+ "taxes": 80.07,
550
+ "increment": 380.70000000000005
586
551
  },
587
552
  {
588
- "exclusive": false,
589
- "id": 26,
590
- "text": "Wooden floor"
591
- },
592
- {
593
- "exclusive": false,
594
- "id": 100,
595
- "text": "24h luggage storage"
596
- },
597
- {
598
- "exclusive": false,
599
- "id": 119,
600
- "text": "Toiletries"
601
- },
602
- {
603
- "exclusive": false,
604
- "id": 121,
605
- "text": "Pillow menu"
606
- },
607
- {
608
- "exclusive": false,
609
- "id": 51,
610
- "text": "Shower"
611
- },
612
- {
613
- "exclusive": false,
614
- "id": 57,
615
- "text": "Hairdryer"
616
- },
617
- {
618
- "exclusive": false,
619
- "id": 58,
620
- "text": "Magnifying mirror"
553
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
554
+ "rateId": "4824--4103--2280b0--206542",
555
+ "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
556
+ "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
557
+ "restrictions": [],
558
+ "basePrice": 875.7,
559
+ "name": "Half board",
560
+ "dayPrice": 291.9,
561
+ "days": [
562
+ { "deal": "206542", "price": 281.9, "value": "05/02/2024" },
563
+ { "deal": "206542", "price": 296.9, "value": "06/02/2024" },
564
+ { "deal": "206542", "price": 296.9, "value": "07/02/2024" }
565
+ ],
566
+ "deals": ["206542"],
567
+ "discount": { "percentage": 0, "breakdown": [] },
568
+ "id": "4824--4103--2280b0--2--206542",
569
+ "originalPrice": 875.7,
570
+ "price": 875.7,
571
+ "taxes": 87.57,
572
+ "increment": 380.70000000000005
621
573
  }
622
574
  ],
623
- "availability": 5,
624
- "bedDisposition": [
625
- [
626
- {
627
- "amount": 1,
628
- "type": 2
629
- }
630
- ]
631
- ],
632
- "bedTypes": [2],
633
575
  "description": "Ideal for long stays for couples, king size bed. Rooms are exterior rooms with balconies, equipped with all types of comforts and services.",
634
576
  "images": [
635
577
  {
@@ -670,538 +612,300 @@
670
612
  ],
671
613
  "name": "Deluxe Room",
672
614
  "maxOccupation": 2,
615
+ "size": "20 m²"
616
+ },
617
+ {
618
+ "amenities": [
619
+ { "exclusive": false, "id": 2, "text": "Refrigerator" },
620
+ { "exclusive": false, "id": 5, "text": "Iron" },
621
+ { "exclusive": false, "id": 6, "text": "Coffee/tea maker" },
622
+ { "exclusive": false, "id": 69, "text": "Desk" },
623
+ { "exclusive": true, "id": 9, "text": "Terrace" },
624
+ { "exclusive": false, "id": 11, "text": "Radio" },
625
+ { "exclusive": false, "id": 13, "text": "Television" },
626
+ { "exclusive": false, "id": 14, "text": "Telephone" },
627
+ { "exclusive": false, "id": 15, "text": "Air conditioning" },
628
+ { "exclusive": false, "id": 65, "text": "Heating" },
629
+ { "exclusive": false, "id": 16, "text": "Free mini-bar" },
630
+ { "exclusive": false, "id": 18, "text": "Free safe" },
631
+ { "exclusive": false, "id": 22, "text": "Free Wi-Fi Internet" },
632
+ { "exclusive": false, "id": 26, "text": "Wooden floor" },
633
+ { "exclusive": false, "id": 100, "text": "24h luggage storage" },
634
+ { "exclusive": false, "id": 119, "text": "Toiletries" },
635
+ { "exclusive": false, "id": 121, "text": "Pillow menu" },
636
+ { "exclusive": false, "id": 51, "text": "Shower" },
637
+ { "exclusive": false, "id": 57, "text": "Hairdryer" },
638
+ { "exclusive": false, "id": 58, "text": "Magnifying mirror" },
639
+ { "exclusive": false, "id": 59, "text": "Bathrobe" },
640
+ { "exclusive": false, "id": 60, "text": "Slippers" }
641
+ ],
642
+ "availability": 2,
643
+ "bedDisposition": [[{ "amount": 1, "type": 2 }]],
644
+ "bedTypes": [2],
645
+ "cancellations": [
646
+ {
647
+ "id": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
648
+ "caption": "until Feb 5",
649
+ "name": "Free cancellation",
650
+ "title": "Cancellation with no penalty up to some hours before arrival.",
651
+ "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled.",
652
+ "price": 0
653
+ }
654
+ ],
673
655
  "rates": [
674
656
  {
675
- "amount": [1, 5],
676
- "basePrice": 407.4,
677
- "boardName": "Room only",
678
- "cancellation": {
679
- "hint": "Free cancellation until Feb 5",
680
- "title": "Cancellation with no penalty up to some hours before arrival.",
681
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
682
- },
683
- "dayPrice": 135.8,
684
- "days": [
685
- {
686
- "deal": "206539",
687
- "price": 126.1,
688
- "value": "05/02/2024"
689
- },
690
- {
691
- "deal": "206539",
692
- "price": 140.65,
693
- "value": "06/02/2024"
694
- },
695
- {
696
- "deal": "206539",
697
- "price": 140.65,
698
- "value": "07/02/2024"
699
- }
700
- ],
701
- "deals": ["206539"],
702
- "discount": {
703
- "percentage": 3,
704
- "breakdown": [
705
- {
706
- "type": 1,
707
- "value": 12.6
708
- }
709
- ]
710
- },
711
- "id": "4824--4103--2280b0--0--206539",
712
- "included": [],
713
- "originalPrice": 420,
714
- "price": 407.4,
657
+ "id": "4824--3842--2281b0",
658
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
715
659
  "name": "Flexible Rate",
716
- "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
717
- "restrictions": [],
718
- "taxes": 40.74
660
+ "offer": false,
661
+ "price": 0
719
662
  },
720
663
  {
721
- "amount": [1, 5],
722
- "basePrice": 420,
723
- "boardName": "Room only",
724
- "cancellation": {
725
- "hint": "Free cancellation until Feb 5",
726
- "title": "Cancellation with no penalty up to some hours before arrival.",
727
- "text": "You can cancel your reservation for free until 12:00 of the Feb 05, 2024. If you cancel your reservation after this moment, the first night will be charged on your card. The same will apply if you leave the hotel before the end of your reservation or if you do not show up (reservation is kept up to the 1st night)."
728
- },
729
- "dayPrice": 140,
730
- "days": [
731
- {
732
- "deal": "217946",
733
- "price": 130,
734
- "value": "05/02/2024"
735
- },
736
- {
737
- "deal": "217946",
738
- "price": 145,
739
- "value": "06/02/2024"
740
- },
741
- {
742
- "deal": "217946",
743
- "price": 145,
744
- "value": "07/02/2024"
745
- }
746
- ],
747
- "deals": ["217946"],
748
- "discount": {
749
- "percentage": 0,
750
- "breakdown": []
751
- },
752
- "id": "4824--4103--2280b0--0--217946",
753
- "included": ["100% ONLINE PREPAYMENT"],
754
- "originalPrice": 420,
755
- "price": 420,
664
+ "id": "4824--3842--2281b0--217946",
665
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
756
666
  "name": "Flexible Rate, prepayment option",
757
- "paymentConditions": "Prepayment required: 100%: Online secure payment",
758
- "restrictions": [],
759
- "taxes": 42
667
+ "offer": true,
668
+ "price": 0
760
669
  },
761
670
  {
762
- "amount": [1, 5],
763
- "basePrice": 528,
764
- "boardName": "Breakfast included",
765
- "cancellation": {
766
- "hint": "Free cancellation until Feb 5",
767
- "title": "Cancellation with no penalty up to some hours before arrival.",
768
- "text": "You can cancel your reservation for free until 12:00 of the Feb 05, 2024. If you cancel your reservation after this moment, the first night will be charged on your card. The same will apply if you leave the hotel before the end of your reservation or if you do not show up (reservation is kept up to the 1st night)."
769
- },
770
- "dayPrice": 176,
671
+ "id": "4824--3842--2281b0--206542",
672
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
673
+ "name": "Special Offer, Parking included",
674
+ "offer": true,
675
+ "price": 75
676
+ }
677
+ ],
678
+ "boards": [
679
+ {
680
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
681
+ "rateId": "4824--3842--2281b0",
682
+ "included": [],
683
+ "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
684
+ "restrictions": [],
685
+ "basePrice": 630,
686
+ "name": "Room only",
687
+ "dayPrice": 210,
771
688
  "days": [
772
- {
773
- "deal": "217946",
774
- "price": 166,
775
- "value": "05/02/2024"
776
- },
777
- {
778
- "deal": "217946",
779
- "price": 181,
780
- "value": "06/02/2024"
781
- },
782
- {
783
- "deal": "217946",
784
- "price": 181,
785
- "value": "07/02/2024"
786
- }
689
+ { "deal": null, "price": 210, "value": "05/02/2024" },
690
+ { "deal": null, "price": 210, "value": "06/02/2024" },
691
+ { "deal": null, "price": 210, "value": "07/02/2024" }
787
692
  ],
788
- "deals": ["217946"],
789
- "discount": {
790
- "percentage": 0,
791
- "breakdown": []
792
- },
793
- "id": "4824--4103--2280b0--1--217946",
693
+ "deals": [],
694
+ "discount": { "percentage": 0, "breakdown": [] },
695
+ "id": "4824--3842--2281b0--0",
696
+ "originalPrice": 630,
697
+ "price": 630,
698
+ "taxes": 63,
699
+ "increment": 0
700
+ },
701
+ {
702
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
703
+ "rateId": "4824--3842--2281b0--217946",
794
704
  "included": ["100% ONLINE PREPAYMENT"],
795
- "originalPrice": 528,
796
- "price": 528,
797
- "name": "Flexible Rate, prepayment option",
798
705
  "paymentConditions": "Prepayment required: 100%: Online secure payment",
799
706
  "restrictions": [],
800
- "taxes": 52.8
801
- },
802
- {
803
- "amount": [1, 5],
804
- "basePrice": 800.7,
805
- "boardName": "Half board",
806
- "cancellation": {
807
- "hint": "Free cancellation until Feb 5",
808
- "title": "Cancellation with no penalty up to some hours before arrival.",
809
- "text": "You can cancel your reservation for free until 12:00 of the Feb 05, 2024. If you cancel your reservation after this moment, the first night will be charged on your card. The same will apply if you leave the hotel before the end of your reservation or if you do not show up (reservation is kept up to the 1st night)."
810
- },
811
- "dayPrice": 266.9,
707
+ "basePrice": 630,
708
+ "name": "Room only",
709
+ "dayPrice": 210,
812
710
  "days": [
813
- {
814
- "deal": "217946",
815
- "price": 256.9,
816
- "value": "05/02/2024"
817
- },
818
- {
819
- "deal": "217946",
820
- "price": 271.9,
821
- "value": "06/02/2024"
822
- },
823
- {
824
- "deal": "217946",
825
- "price": 271.9,
826
- "value": "07/02/2024"
827
- }
711
+ { "deal": "217946", "price": 210, "value": "05/02/2024" },
712
+ { "deal": "217946", "price": 210, "value": "06/02/2024" },
713
+ { "deal": "217946", "price": 210, "value": "07/02/2024" }
828
714
  ],
829
715
  "deals": ["217946"],
830
- "discount": {
831
- "percentage": 0,
832
- "breakdown": []
833
- },
834
- "id": "4824--4103--2280b0--2--217946",
835
- "included": ["100% ONLINE PREPAYMENT"],
836
- "originalPrice": 800.7,
837
- "price": 800.7,
838
- "name": "Flexible Rate, prepayment option",
839
- "paymentConditions": "Prepayment required: 100%: Online secure payment",
840
- "restrictions": [],
841
- "taxes": 80.07
716
+ "discount": { "percentage": 0, "breakdown": [] },
717
+ "id": "4824--3842--2281b0--0--217946",
718
+ "originalPrice": 630,
719
+ "price": 630,
720
+ "taxes": 63,
721
+ "increment": 0
842
722
  },
843
723
  {
844
- "amount": [1, 5],
845
- "basePrice": 495,
846
- "boardName": "Room only",
847
- "cancellation": {
848
- "hint": "Free cancellation until Feb 5",
849
- "title": "Cancellation with no penalty up to some hours before arrival.",
850
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
851
- },
852
- "dayPrice": 165,
853
- "days": [
854
- {
855
- "deal": "206542",
856
- "price": 155,
857
- "value": "05/02/2024"
858
- },
859
- {
860
- "deal": "206542",
861
- "price": 170,
862
- "value": "06/02/2024"
863
- },
864
- {
865
- "deal": "206542",
866
- "price": 170,
867
- "value": "07/02/2024"
868
- }
869
- ],
870
- "deals": ["206542"],
871
- "discount": {
872
- "percentage": 0,
873
- "breakdown": []
874
- },
875
- "id": "4824--4103--2280b0--0--206542",
724
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
725
+ "rateId": "4824--3842--2281b0--206542",
876
726
  "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
877
- "originalPrice": 495,
878
- "price": 495,
879
- "name": "Special Offer, Parking included",
880
727
  "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
881
728
  "restrictions": [],
882
- "taxes": 49.5
883
- },
884
- {
885
- "amount": [1, 5],
886
- "basePrice": 603,
887
- "boardName": "Breakfast included",
888
- "cancellation": {
889
- "hint": "Free cancellation until Feb 5",
890
- "title": "Cancellation with no penalty up to some hours before arrival.",
891
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
892
- },
893
- "dayPrice": 201,
729
+ "basePrice": 705,
730
+ "name": "Room only",
731
+ "dayPrice": 235,
894
732
  "days": [
895
- {
896
- "deal": "206542",
897
- "price": 191,
898
- "value": "05/02/2024"
899
- },
900
- {
901
- "deal": "206542",
902
- "price": 206,
903
- "value": "06/02/2024"
904
- },
905
- {
906
- "deal": "206542",
907
- "price": 206,
908
- "value": "07/02/2024"
909
- }
733
+ { "deal": "206542", "price": 235, "value": "05/02/2024" },
734
+ { "deal": "206542", "price": 235, "value": "06/02/2024" },
735
+ { "deal": "206542", "price": 235, "value": "07/02/2024" }
910
736
  ],
911
737
  "deals": ["206542"],
912
- "discount": {
913
- "percentage": 0,
914
- "breakdown": []
915
- },
916
- "id": "4824--4103--2280b0--1--206542",
917
- "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
918
- "originalPrice": 603,
919
- "price": 603,
920
- "name": "Special Offer, Parking included",
738
+ "discount": { "percentage": 0, "breakdown": [] },
739
+ "id": "4824--3842--2281b0--0--206542",
740
+ "originalPrice": 705,
741
+ "price": 705,
742
+ "taxes": 70.5,
743
+ "increment": 0
744
+ },
745
+ {
746
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
747
+ "rateId": "4824--3842--2281b0",
748
+ "included": [],
921
749
  "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
922
750
  "restrictions": [],
923
- "taxes": 60.3
751
+ "basePrice": 738,
752
+ "name": "Breakfast included",
753
+ "dayPrice": 246,
754
+ "days": [
755
+ { "deal": null, "price": 246, "value": "05/02/2024" },
756
+ { "deal": null, "price": 246, "value": "06/02/2024" },
757
+ { "deal": null, "price": 246, "value": "07/02/2024" }
758
+ ],
759
+ "deals": [],
760
+ "discount": { "percentage": 0, "breakdown": [] },
761
+ "id": "4824--3842--2281b0--1",
762
+ "originalPrice": 738,
763
+ "price": 738,
764
+ "taxes": 73.8,
765
+ "increment": 108
924
766
  },
925
767
  {
926
- "amount": [1, 5],
927
- "basePrice": 875.7,
928
- "boardName": "Half board",
929
- "cancellation": {
930
- "hint": "Free cancellation until Feb 5",
931
- "title": "Cancellation with no penalty up to some hours before arrival.",
932
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
933
- },
934
- "dayPrice": 291.9,
768
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
769
+ "rateId": "4824--3842--2281b0--217946",
770
+ "included": ["100% ONLINE PREPAYMENT"],
771
+ "paymentConditions": "Prepayment required: 100%: Online secure payment",
772
+ "restrictions": [],
773
+ "basePrice": 738,
774
+ "name": "Breakfast included",
775
+ "dayPrice": 246,
935
776
  "days": [
936
- {
937
- "deal": "206542",
938
- "price": 281.9,
939
- "value": "05/02/2024"
940
- },
941
- {
942
- "deal": "206542",
943
- "price": 296.9,
944
- "value": "06/02/2024"
945
- },
946
- {
947
- "deal": "206542",
948
- "price": 296.9,
949
- "value": "07/02/2024"
950
- }
777
+ { "deal": "217946", "price": 246, "value": "05/02/2024" },
778
+ { "deal": "217946", "price": 246, "value": "06/02/2024" },
779
+ { "deal": "217946", "price": 246, "value": "07/02/2024" }
951
780
  ],
952
- "deals": ["206542"],
953
- "discount": {
954
- "percentage": 0,
955
- "breakdown": []
956
- },
957
- "id": "4824--4103--2280b0--2--206542",
781
+ "deals": ["217946"],
782
+ "discount": { "percentage": 0, "breakdown": [] },
783
+ "id": "4824--3842--2281b0--1--217946",
784
+ "originalPrice": 738,
785
+ "price": 738,
786
+ "taxes": 73.8,
787
+ "increment": 108
788
+ },
789
+ {
790
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
791
+ "rateId": "4824--3842--2281b0--206542",
958
792
  "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
959
- "originalPrice": 875.7,
960
- "price": 875.7,
961
- "name": "Special Offer, Parking included",
962
793
  "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
963
794
  "restrictions": [],
964
- "taxes": 87.57
965
- },
966
- {
967
- "amount": [1, 5],
968
- "basePrice": 528,
969
- "boardName": "Breakfast included",
970
- "cancellation": {
971
- "hint": "Free cancellation until Feb 5",
972
- "title": "Cancellation with no penalty up to some hours before arrival.",
973
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
974
- },
975
- "dayPrice": 176,
795
+ "basePrice": 813,
796
+ "name": "Breakfast included",
797
+ "dayPrice": 271,
976
798
  "days": [
977
- {
978
- "deal": null,
979
- "price": 166,
980
- "value": "05/02/2024"
981
- },
982
- {
983
- "deal": null,
984
- "price": 181,
985
- "value": "06/02/2024"
986
- },
987
- {
988
- "deal": null,
989
- "price": 181,
990
- "value": "07/02/2024"
991
- }
799
+ { "deal": "206542", "price": 271, "value": "05/02/2024" },
800
+ { "deal": "206542", "price": 271, "value": "06/02/2024" },
801
+ { "deal": "206542", "price": 271, "value": "07/02/2024" }
992
802
  ],
993
- "deals": [],
994
- "discount": {
995
- "percentage": 0,
996
- "breakdown": []
997
- },
998
- "id": "4824--4103--2280b0--1",
803
+ "deals": ["206542"],
804
+ "discount": { "percentage": 0, "breakdown": [] },
805
+ "id": "4824--3842--2281b0--1--206542",
806
+ "originalPrice": 813,
807
+ "price": 813,
808
+ "taxes": 81.3,
809
+ "increment": 108
810
+ },
811
+ {
812
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
813
+ "rateId": "4824--3842--2281b0",
999
814
  "included": [],
1000
- "originalPrice": 528,
1001
- "price": 528,
1002
- "name": "Flexible Rate",
1003
815
  "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
1004
816
  "restrictions": [],
1005
- "taxes": 52.8
817
+ "basePrice": 928.92,
818
+ "name": "Half board",
819
+ "dayPrice": 309.64,
820
+ "days": [
821
+ { "deal": null, "price": 309.64, "value": "05/02/2024" },
822
+ { "deal": null, "price": 309.64, "value": "06/02/2024" },
823
+ { "deal": null, "price": 309.64, "value": "07/02/2024" }
824
+ ],
825
+ "deals": [],
826
+ "discount": { "percentage": 0, "breakdown": [] },
827
+ "id": "4824--3842--2281b0--2",
828
+ "originalPrice": 928.92,
829
+ "price": 928.92,
830
+ "taxes": 92.89,
831
+ "increment": 298.91999999999996
1006
832
  },
1007
833
  {
1008
- "amount": [1, 5],
1009
- "basePrice": 800.7,
1010
- "boardName": "Half board",
1011
- "cancellation": {
1012
- "hint": "Free cancellation until Feb 5",
1013
- "title": "Cancellation with no penalty up to some hours before arrival.",
1014
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
1015
- },
1016
- "dayPrice": 266.9,
834
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
835
+ "rateId": "4824--3842--2281b0--217946",
836
+ "included": ["100% ONLINE PREPAYMENT"],
837
+ "paymentConditions": "Prepayment required: 100%: Online secure payment",
838
+ "restrictions": [],
839
+ "basePrice": 928.92,
840
+ "name": "Half board",
841
+ "dayPrice": 309.64,
1017
842
  "days": [
1018
- {
1019
- "deal": null,
1020
- "price": 256.9,
1021
- "value": "05/02/2024"
1022
- },
1023
- {
1024
- "deal": null,
1025
- "price": 271.9,
1026
- "value": "06/02/2024"
1027
- },
1028
- {
1029
- "deal": null,
1030
- "price": 271.9,
1031
- "value": "07/02/2024"
1032
- }
843
+ { "deal": "217946", "price": 309.64, "value": "05/02/2024" },
844
+ { "deal": "217946", "price": 309.64, "value": "06/02/2024" },
845
+ { "deal": "217946", "price": 309.64, "value": "07/02/2024" }
1033
846
  ],
1034
- "deals": [],
1035
- "discount": {
1036
- "percentage": 0,
1037
- "breakdown": []
1038
- },
1039
- "id": "4824--4103--2280b0--2",
1040
- "included": [],
1041
- "originalPrice": 800.7,
1042
- "price": 800.7,
1043
- "name": "Flexible Rate",
847
+ "deals": ["217946"],
848
+ "discount": { "percentage": 0, "breakdown": [] },
849
+ "id": "4824--3842--2281b0--2--217946",
850
+ "originalPrice": 928.92,
851
+ "price": 928.92,
852
+ "taxes": 92.89,
853
+ "increment": 298.91999999999996
854
+ },
855
+ {
856
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
857
+ "rateId": "4824--3842--2281b0--206542",
858
+ "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
1044
859
  "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
1045
860
  "restrictions": [],
1046
- "taxes": 80.07
861
+ "basePrice": 1003.92,
862
+ "name": "Half board",
863
+ "dayPrice": 334.64,
864
+ "days": [
865
+ { "deal": "206542", "price": 334.64, "value": "05/02/2024" },
866
+ { "deal": "206542", "price": 334.64, "value": "06/02/2024" },
867
+ { "deal": "206542", "price": 334.64, "value": "07/02/2024" }
868
+ ],
869
+ "deals": ["206542"],
870
+ "discount": { "percentage": 0, "breakdown": [] },
871
+ "id": "4824--3842--2281b0--2--206542",
872
+ "originalPrice": 1003.92,
873
+ "price": 1003.92,
874
+ "taxes": 100.39,
875
+ "increment": 298.91999999999996
1047
876
  }
1048
877
  ],
1049
- "size": "20 "
1050
- },
1051
- {
1052
- "amenities": [
878
+ "description": "Loft room with exterior balcony, with a view over the rooftops of Madrid. Ideal for romantic weekends and long stays in an enchanting place in the heart of Madrid.",
879
+ "images": [
1053
880
  {
1054
- "exclusive": false,
1055
- "id": 2,
1056
- "text": "Refrigerator"
881
+ "alt": null,
882
+ "large": "https://images.mirai.com/INFOROOMS/43120423/B6ARe4KtCp4caO8vPzZB/B6ARe4KtCp4caO8vPzZB_large.jpg",
883
+ "thumbnail": "https://images.mirai.com/INFOROOMS/43120423/B6ARe4KtCp4caO8vPzZB/B6ARe4KtCp4caO8vPzZB_mediumrect.jpg"
1057
884
  },
1058
885
  {
1059
- "exclusive": false,
1060
- "id": 5,
1061
- "text": "Iron"
886
+ "alt": null,
887
+ "large": "https://images.mirai.com/INFOROOMS/43120423/kq4WJH8T70kR4fNuTNzf/kq4WJH8T70kR4fNuTNzf_large.jpg",
888
+ "thumbnail": "https://images.mirai.com/INFOROOMS/43120423/kq4WJH8T70kR4fNuTNzf/kq4WJH8T70kR4fNuTNzf_mediumrect.jpg"
1062
889
  },
1063
890
  {
1064
- "exclusive": false,
1065
- "id": 6,
1066
- "text": "Coffee/tea maker"
891
+ "alt": null,
892
+ "large": "https://images.mirai.com/INFOROOMS/43120423/114C3RC1CuylZdpEKHu3/114C3RC1CuylZdpEKHu3_large.jpg",
893
+ "thumbnail": "https://images.mirai.com/INFOROOMS/43120423/114C3RC1CuylZdpEKHu3/114C3RC1CuylZdpEKHu3_mediumrect.jpg"
1067
894
  },
1068
895
  {
1069
- "exclusive": false,
1070
- "id": 69,
1071
- "text": "Desk"
896
+ "alt": null,
897
+ "large": "https://images.mirai.com/INFOROOMS/43120423/iAGiP9XSZy5ISDWZ1mLZ/iAGiP9XSZy5ISDWZ1mLZ_large.jpg",
898
+ "thumbnail": "https://images.mirai.com/INFOROOMS/43120423/iAGiP9XSZy5ISDWZ1mLZ/iAGiP9XSZy5ISDWZ1mLZ_mediumrect.jpg"
1072
899
  },
1073
900
  {
1074
- "exclusive": true,
1075
- "id": 9,
1076
- "text": "Terrace"
901
+ "alt": null,
902
+ "large": "https://images.mirai.com/INFOROOMS/43120423/DQ8GevteXaej0DJRkRQH/DQ8GevteXaej0DJRkRQH_large.jpg",
903
+ "thumbnail": "https://images.mirai.com/INFOROOMS/43120423/DQ8GevteXaej0DJRkRQH/DQ8GevteXaej0DJRkRQH_mediumrect.jpg"
1077
904
  },
1078
905
  {
1079
- "exclusive": false,
1080
- "id": 11,
1081
- "text": "Radio"
1082
- },
1083
- {
1084
- "exclusive": false,
1085
- "id": 13,
1086
- "text": "Television"
1087
- },
1088
- {
1089
- "exclusive": false,
1090
- "id": 14,
1091
- "text": "Telephone"
1092
- },
1093
- {
1094
- "exclusive": false,
1095
- "id": 15,
1096
- "text": "Air conditioning"
1097
- },
1098
- {
1099
- "exclusive": false,
1100
- "id": 65,
1101
- "text": "Heating"
1102
- },
1103
- {
1104
- "exclusive": false,
1105
- "id": 16,
1106
- "text": "Free mini-bar"
1107
- },
1108
- {
1109
- "exclusive": false,
1110
- "id": 18,
1111
- "text": "Free safe"
1112
- },
1113
- {
1114
- "exclusive": false,
1115
- "id": 22,
1116
- "text": "Free Wi-Fi Internet"
1117
- },
1118
- {
1119
- "exclusive": false,
1120
- "id": 26,
1121
- "text": "Wooden floor"
1122
- },
1123
- {
1124
- "exclusive": false,
1125
- "id": 100,
1126
- "text": "24h luggage storage"
1127
- },
1128
- {
1129
- "exclusive": false,
1130
- "id": 119,
1131
- "text": "Toiletries"
1132
- },
1133
- {
1134
- "exclusive": false,
1135
- "id": 121,
1136
- "text": "Pillow menu"
1137
- },
1138
- {
1139
- "exclusive": false,
1140
- "id": 51,
1141
- "text": "Shower"
1142
- },
1143
- {
1144
- "exclusive": false,
1145
- "id": 57,
1146
- "text": "Hairdryer"
1147
- },
1148
- {
1149
- "exclusive": false,
1150
- "id": 58,
1151
- "text": "Magnifying mirror"
1152
- },
1153
- {
1154
- "exclusive": false,
1155
- "id": 59,
1156
- "text": "Bathrobe"
1157
- },
1158
- {
1159
- "exclusive": false,
1160
- "id": 60,
1161
- "text": "Slippers"
1162
- }
1163
- ],
1164
- "availability": 2,
1165
- "bedDisposition": [
1166
- [
1167
- {
1168
- "amount": 1,
1169
- "type": 2
1170
- }
1171
- ]
1172
- ],
1173
- "bedTypes": [2],
1174
- "description": "Loft room with exterior balcony, with a view over the rooftops of Madrid. Ideal for romantic weekends and long stays in an enchanting place in the heart of Madrid.",
1175
- "images": [
1176
- {
1177
- "alt": null,
1178
- "large": "https://images.mirai.com/INFOROOMS/43120423/B6ARe4KtCp4caO8vPzZB/B6ARe4KtCp4caO8vPzZB_large.jpg",
1179
- "thumbnail": "https://images.mirai.com/INFOROOMS/43120423/B6ARe4KtCp4caO8vPzZB/B6ARe4KtCp4caO8vPzZB_mediumrect.jpg"
1180
- },
1181
- {
1182
- "alt": null,
1183
- "large": "https://images.mirai.com/INFOROOMS/43120423/kq4WJH8T70kR4fNuTNzf/kq4WJH8T70kR4fNuTNzf_large.jpg",
1184
- "thumbnail": "https://images.mirai.com/INFOROOMS/43120423/kq4WJH8T70kR4fNuTNzf/kq4WJH8T70kR4fNuTNzf_mediumrect.jpg"
1185
- },
1186
- {
1187
- "alt": null,
1188
- "large": "https://images.mirai.com/INFOROOMS/43120423/114C3RC1CuylZdpEKHu3/114C3RC1CuylZdpEKHu3_large.jpg",
1189
- "thumbnail": "https://images.mirai.com/INFOROOMS/43120423/114C3RC1CuylZdpEKHu3/114C3RC1CuylZdpEKHu3_mediumrect.jpg"
1190
- },
1191
- {
1192
- "alt": null,
1193
- "large": "https://images.mirai.com/INFOROOMS/43120423/iAGiP9XSZy5ISDWZ1mLZ/iAGiP9XSZy5ISDWZ1mLZ_large.jpg",
1194
- "thumbnail": "https://images.mirai.com/INFOROOMS/43120423/iAGiP9XSZy5ISDWZ1mLZ/iAGiP9XSZy5ISDWZ1mLZ_mediumrect.jpg"
1195
- },
1196
- {
1197
- "alt": null,
1198
- "large": "https://images.mirai.com/INFOROOMS/43120423/DQ8GevteXaej0DJRkRQH/DQ8GevteXaej0DJRkRQH_large.jpg",
1199
- "thumbnail": "https://images.mirai.com/INFOROOMS/43120423/DQ8GevteXaej0DJRkRQH/DQ8GevteXaej0DJRkRQH_mediumrect.jpg"
1200
- },
1201
- {
1202
- "alt": null,
1203
- "large": "https://images.mirai.com/INFOROOMS/43120423/l8O3WkgD1aSD4ukoKVBq/l8O3WkgD1aSD4ukoKVBq_large.jpg",
1204
- "thumbnail": "https://images.mirai.com/INFOROOMS/43120423/l8O3WkgD1aSD4ukoKVBq/l8O3WkgD1aSD4ukoKVBq_mediumrect.jpg"
906
+ "alt": null,
907
+ "large": "https://images.mirai.com/INFOROOMS/43120423/l8O3WkgD1aSD4ukoKVBq/l8O3WkgD1aSD4ukoKVBq_large.jpg",
908
+ "thumbnail": "https://images.mirai.com/INFOROOMS/43120423/l8O3WkgD1aSD4ukoKVBq/l8O3WkgD1aSD4ukoKVBq_mediumrect.jpg"
1205
909
  },
1206
910
  {
1207
911
  "alt": null,
@@ -1226,502 +930,269 @@
1226
930
  ],
1227
931
  "name": "Penthouse with Terrace (one queen bed)",
1228
932
  "maxOccupation": 2,
933
+ "size": "25 m²"
934
+ },
935
+ {
936
+ "amenities": [
937
+ { "exclusive": false, "id": 2, "text": "Refrigerator" },
938
+ { "exclusive": false, "id": 5, "text": "Iron" },
939
+ { "exclusive": false, "id": 6, "text": "Coffee/tea maker" },
940
+ { "exclusive": false, "id": 69, "text": "Desk" },
941
+ { "exclusive": false, "id": 10, "text": "Balcony" },
942
+ { "exclusive": false, "id": 11, "text": "Radio" },
943
+ { "exclusive": false, "id": 13, "text": "Television" },
944
+ { "exclusive": false, "id": 14, "text": "Telephone" },
945
+ { "exclusive": false, "id": 15, "text": "Air conditioning" },
946
+ { "exclusive": false, "id": 65, "text": "Heating" },
947
+ { "exclusive": false, "id": 16, "text": "Free mini-bar" },
948
+ { "exclusive": false, "id": 18, "text": "Free safe" },
949
+ { "exclusive": false, "id": 22, "text": "Free Wi-Fi Internet" },
950
+ { "exclusive": false, "id": 26, "text": "Wooden floor" },
951
+ { "exclusive": false, "id": 100, "text": "24h luggage storage" },
952
+ { "exclusive": false, "id": 119, "text": "Toiletries" },
953
+ { "exclusive": false, "id": 121, "text": "Pillow menu" },
954
+ { "exclusive": false, "id": 51, "text": "Shower" },
955
+ { "exclusive": false, "id": 57, "text": "Hairdryer" },
956
+ { "exclusive": false, "id": 58, "text": "Magnifying mirror" },
957
+ { "exclusive": false, "id": 59, "text": "Bathrobe" },
958
+ { "exclusive": false, "id": 60, "text": "Slippers" }
959
+ ],
960
+ "availability": 3,
961
+ "bedDisposition": [[{ "amount": 1, "type": 2 }]],
962
+ "bedTypes": [2],
963
+ "cancellations": [
964
+ {
965
+ "id": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
966
+ "caption": "until Feb 5",
967
+ "name": "Free cancellation",
968
+ "title": "Cancellation with no penalty up to some hours before arrival.",
969
+ "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled.",
970
+ "price": 0
971
+ }
972
+ ],
1229
973
  "rates": [
1230
974
  {
1231
- "amount": [1, 2],
1232
- "basePrice": 630,
1233
- "boardName": "Room only",
1234
- "cancellation": {
1235
- "hint": "Free cancellation until Feb 5",
1236
- "title": "Cancellation with no penalty up to some hours before arrival.",
1237
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
1238
- },
1239
- "dayPrice": 210,
1240
- "days": [
1241
- {
1242
- "deal": null,
1243
- "price": 210,
1244
- "value": "05/02/2024"
1245
- },
1246
- {
1247
- "deal": null,
1248
- "price": 210,
1249
- "value": "06/02/2024"
1250
- },
1251
- {
1252
- "deal": null,
1253
- "price": 210,
1254
- "value": "07/02/2024"
1255
- }
1256
- ],
1257
- "deals": [],
1258
- "discount": {
1259
- "percentage": 0,
1260
- "breakdown": []
1261
- },
1262
- "id": "4824--3842--2281b0--0",
1263
- "included": [],
1264
- "originalPrice": 630,
1265
- "price": 630,
975
+ "id": "4824--9098--40590b0",
976
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
1266
977
  "name": "Flexible Rate",
1267
- "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
1268
- "restrictions": [],
1269
- "taxes": 63
978
+ "offer": false,
979
+ "price": 0
1270
980
  },
1271
981
  {
1272
- "amount": [1, 2],
1273
- "basePrice": 738,
1274
- "boardName": "Breakfast included",
1275
- "cancellation": {
1276
- "hint": "Free cancellation until Feb 5",
1277
- "title": "Cancellation with no penalty up to some hours before arrival.",
1278
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
1279
- },
1280
- "dayPrice": 246,
1281
- "days": [
1282
- {
1283
- "deal": null,
1284
- "price": 246,
1285
- "value": "05/02/2024"
1286
- },
1287
- {
1288
- "deal": null,
1289
- "price": 246,
1290
- "value": "06/02/2024"
1291
- },
1292
- {
1293
- "deal": null,
1294
- "price": 246,
1295
- "value": "07/02/2024"
1296
- }
1297
- ],
1298
- "deals": [],
1299
- "discount": {
1300
- "percentage": 0,
1301
- "breakdown": []
1302
- },
1303
- "id": "4824--3842--2281b0--1",
982
+ "id": "4824--9098--40590b0--217946",
983
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
984
+ "name": "Flexible Rate, prepayment option",
985
+ "offer": true,
986
+ "price": 0
987
+ },
988
+ {
989
+ "id": "4824--9098--40590b0--206542",
990
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
991
+ "name": "Special Offer, Parking included",
992
+ "offer": true,
993
+ "price": 75
994
+ }
995
+ ],
996
+ "boards": [
997
+ {
998
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
999
+ "rateId": "4824--9098--40590b0",
1304
1000
  "included": [],
1305
- "originalPrice": 738,
1306
- "price": 738,
1307
- "name": "Flexible Rate",
1308
1001
  "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
1309
1002
  "restrictions": [],
1310
- "taxes": 73.8
1311
- },
1312
- {
1313
- "amount": [1, 2],
1314
- "basePrice": 928.92,
1315
- "boardName": "Half board",
1316
- "cancellation": {
1317
- "hint": "Free cancellation until Feb 5",
1318
- "title": "Cancellation with no penalty up to some hours before arrival.",
1319
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
1320
- },
1321
- "dayPrice": 309.64,
1003
+ "basePrice": 645,
1004
+ "name": "Room only",
1005
+ "dayPrice": 215,
1322
1006
  "days": [
1323
- {
1324
- "deal": null,
1325
- "price": 309.64,
1326
- "value": "05/02/2024"
1327
- },
1328
- {
1329
- "deal": null,
1330
- "price": 309.64,
1331
- "value": "06/02/2024"
1332
- },
1333
- {
1334
- "deal": null,
1335
- "price": 309.64,
1336
- "value": "07/02/2024"
1337
- }
1007
+ { "deal": null, "price": 215, "value": "05/02/2024" },
1008
+ { "deal": null, "price": 215, "value": "06/02/2024" },
1009
+ { "deal": null, "price": 215, "value": "07/02/2024" }
1338
1010
  ],
1339
1011
  "deals": [],
1340
- "discount": {
1341
- "percentage": 0,
1342
- "breakdown": []
1343
- },
1344
- "id": "4824--3842--2281b0--2",
1345
- "included": [],
1346
- "originalPrice": 928.92,
1347
- "price": 928.92,
1348
- "name": "Flexible Rate",
1349
- "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
1350
- "restrictions": [],
1351
- "taxes": 92.89
1012
+ "discount": { "percentage": 0, "breakdown": [] },
1013
+ "id": "4824--9098--40590b0--0",
1014
+ "originalPrice": 645,
1015
+ "price": 645,
1016
+ "taxes": 64.5,
1017
+ "increment": 0
1352
1018
  },
1353
1019
  {
1354
- "amount": [1, 2],
1355
- "basePrice": 630,
1356
- "boardName": "Room only",
1357
- "cancellation": {
1358
- "hint": "Free cancellation until Feb 5",
1359
- "title": "Cancellation with no penalty up to some hours before arrival.",
1360
- "text": "You can cancel your reservation for free until 12:00 of the Feb 05, 2024. If you cancel your reservation after this moment, the first night will be charged on your card. The same will apply if you leave the hotel before the end of your reservation or if you do not show up (reservation is kept up to the 1st night)."
1361
- },
1362
- "dayPrice": 210,
1363
- "days": [
1364
- {
1365
- "deal": "217946",
1366
- "price": 210,
1367
- "value": "05/02/2024"
1368
- },
1369
- {
1370
- "deal": "217946",
1371
- "price": 210,
1372
- "value": "06/02/2024"
1373
- },
1374
- {
1375
- "deal": "217946",
1376
- "price": 210,
1377
- "value": "07/02/2024"
1378
- }
1379
- ],
1380
- "deals": ["217946"],
1381
- "discount": {
1382
- "percentage": 0,
1383
- "breakdown": []
1384
- },
1385
- "id": "4824--3842--2281b0--0--217946",
1020
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
1021
+ "rateId": "4824--9098--40590b0--217946",
1386
1022
  "included": ["100% ONLINE PREPAYMENT"],
1387
- "originalPrice": 630,
1388
- "price": 630,
1389
- "name": "Flexible Rate, prepayment option",
1390
1023
  "paymentConditions": "Prepayment required: 100%: Online secure payment",
1391
1024
  "restrictions": [],
1392
- "taxes": 63
1393
- },
1394
- {
1395
- "amount": [1, 2],
1396
- "basePrice": 738,
1397
- "boardName": "Breakfast included",
1398
- "cancellation": {
1399
- "hint": "Free cancellation until Feb 5",
1400
- "title": "Cancellation with no penalty up to some hours before arrival.",
1401
- "text": "You can cancel your reservation for free until 12:00 of the Feb 05, 2024. If you cancel your reservation after this moment, the first night will be charged on your card. The same will apply if you leave the hotel before the end of your reservation or if you do not show up (reservation is kept up to the 1st night)."
1402
- },
1403
- "dayPrice": 246,
1025
+ "basePrice": 645,
1026
+ "name": "Room only",
1027
+ "dayPrice": 215,
1404
1028
  "days": [
1405
- {
1406
- "deal": "217946",
1407
- "price": 246,
1408
- "value": "05/02/2024"
1409
- },
1410
- {
1411
- "deal": "217946",
1412
- "price": 246,
1413
- "value": "06/02/2024"
1414
- },
1415
- {
1416
- "deal": "217946",
1417
- "price": 246,
1418
- "value": "07/02/2024"
1419
- }
1029
+ { "deal": "217946", "price": 215, "value": "05/02/2024" },
1030
+ { "deal": "217946", "price": 215, "value": "06/02/2024" },
1031
+ { "deal": "217946", "price": 215, "value": "07/02/2024" }
1420
1032
  ],
1421
1033
  "deals": ["217946"],
1422
- "discount": {
1423
- "percentage": 0,
1424
- "breakdown": []
1425
- },
1426
- "id": "4824--3842--2281b0--1--217946",
1427
- "included": ["100% ONLINE PREPAYMENT"],
1428
- "originalPrice": 738,
1429
- "price": 738,
1430
- "name": "Flexible Rate, prepayment option",
1431
- "paymentConditions": "Prepayment required: 100%: Online secure payment",
1034
+ "discount": { "percentage": 0, "breakdown": [] },
1035
+ "id": "4824--9098--40590b0--0--217946",
1036
+ "originalPrice": 645,
1037
+ "price": 645,
1038
+ "taxes": 64.5,
1039
+ "increment": 0
1040
+ },
1041
+ {
1042
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
1043
+ "rateId": "4824--9098--40590b0--206542",
1044
+ "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
1045
+ "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
1432
1046
  "restrictions": [],
1433
- "taxes": 73.8
1047
+ "basePrice": 720,
1048
+ "name": "Room only",
1049
+ "dayPrice": 240,
1050
+ "days": [
1051
+ { "deal": "206542", "price": 240, "value": "05/02/2024" },
1052
+ { "deal": "206542", "price": 240, "value": "06/02/2024" },
1053
+ { "deal": "206542", "price": 240, "value": "07/02/2024" }
1054
+ ],
1055
+ "deals": ["206542"],
1056
+ "discount": { "percentage": 0, "breakdown": [] },
1057
+ "id": "4824--9098--40590b0--0--206542",
1058
+ "originalPrice": 720,
1059
+ "price": 720,
1060
+ "taxes": 72,
1061
+ "increment": 0
1434
1062
  },
1435
1063
  {
1436
- "amount": [1, 2],
1437
- "basePrice": 928.92,
1438
- "boardName": "Half board",
1439
- "cancellation": {
1440
- "hint": "Free cancellation until Feb 5",
1441
- "title": "Cancellation with no penalty up to some hours before arrival.",
1442
- "text": "You can cancel your reservation for free until 12:00 of the Feb 05, 2024. If you cancel your reservation after this moment, the first night will be charged on your card. The same will apply if you leave the hotel before the end of your reservation or if you do not show up (reservation is kept up to the 1st night)."
1443
- },
1444
- "dayPrice": 309.64,
1064
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
1065
+ "rateId": "4824--9098--40590b0",
1066
+ "included": [],
1067
+ "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
1068
+ "restrictions": [],
1069
+ "basePrice": 753,
1070
+ "name": "Breakfast included",
1071
+ "dayPrice": 251,
1445
1072
  "days": [
1446
- {
1447
- "deal": "217946",
1448
- "price": 309.64,
1449
- "value": "05/02/2024"
1450
- },
1451
- {
1452
- "deal": "217946",
1453
- "price": 309.64,
1454
- "value": "06/02/2024"
1455
- },
1456
- {
1457
- "deal": "217946",
1458
- "price": 309.64,
1459
- "value": "07/02/2024"
1460
- }
1073
+ { "deal": null, "price": 251, "value": "05/02/2024" },
1074
+ { "deal": null, "price": 251, "value": "06/02/2024" },
1075
+ { "deal": null, "price": 251, "value": "07/02/2024" }
1461
1076
  ],
1462
- "deals": ["217946"],
1463
- "discount": {
1464
- "percentage": 0,
1465
- "breakdown": []
1466
- },
1467
- "id": "4824--3842--2281b0--2--217946",
1077
+ "deals": [],
1078
+ "discount": { "percentage": 0, "breakdown": [] },
1079
+ "id": "4824--9098--40590b0--1",
1080
+ "originalPrice": 753,
1081
+ "price": 753,
1082
+ "taxes": 75.3,
1083
+ "increment": 108
1084
+ },
1085
+ {
1086
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
1087
+ "rateId": "4824--9098--40590b0--217946",
1468
1088
  "included": ["100% ONLINE PREPAYMENT"],
1469
- "originalPrice": 928.92,
1470
- "price": 928.92,
1471
- "name": "Flexible Rate, prepayment option",
1472
1089
  "paymentConditions": "Prepayment required: 100%: Online secure payment",
1473
1090
  "restrictions": [],
1474
- "taxes": 92.89
1475
- },
1476
- {
1477
- "amount": [1, 2],
1478
- "basePrice": 705,
1479
- "boardName": "Room only",
1480
- "cancellation": {
1481
- "hint": "Free cancellation until Feb 5",
1482
- "title": "Cancellation with no penalty up to some hours before arrival.",
1483
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
1484
- },
1485
- "dayPrice": 235,
1091
+ "basePrice": 753,
1092
+ "name": "Breakfast included",
1093
+ "dayPrice": 251,
1486
1094
  "days": [
1487
- {
1488
- "deal": "206542",
1489
- "price": 235,
1490
- "value": "05/02/2024"
1491
- },
1492
- {
1493
- "deal": "206542",
1494
- "price": 235,
1495
- "value": "06/02/2024"
1496
- },
1497
- {
1498
- "deal": "206542",
1499
- "price": 235,
1500
- "value": "07/02/2024"
1501
- }
1095
+ { "deal": "217946", "price": 251, "value": "05/02/2024" },
1096
+ { "deal": "217946", "price": 251, "value": "06/02/2024" },
1097
+ { "deal": "217946", "price": 251, "value": "07/02/2024" }
1502
1098
  ],
1503
- "deals": ["206542"],
1504
- "discount": {
1505
- "percentage": 0,
1506
- "breakdown": []
1507
- },
1508
- "id": "4824--3842--2281b0--0--206542",
1099
+ "deals": ["217946"],
1100
+ "discount": { "percentage": 0, "breakdown": [] },
1101
+ "id": "4824--9098--40590b0--1--217946",
1102
+ "originalPrice": 753,
1103
+ "price": 753,
1104
+ "taxes": 75.3,
1105
+ "increment": 108
1106
+ },
1107
+ {
1108
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
1109
+ "rateId": "4824--9098--40590b0--206542",
1509
1110
  "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
1510
- "originalPrice": 705,
1511
- "price": 705,
1512
- "name": "Special Offer, Parking included",
1513
1111
  "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
1514
1112
  "restrictions": [],
1515
- "taxes": 70.5
1516
- },
1517
- {
1518
- "amount": [1, 2],
1519
- "basePrice": 813,
1520
- "boardName": "Breakfast included",
1521
- "cancellation": {
1522
- "hint": "Free cancellation until Feb 5",
1523
- "title": "Cancellation with no penalty up to some hours before arrival.",
1524
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
1525
- },
1526
- "dayPrice": 271,
1113
+ "basePrice": 828,
1114
+ "name": "Breakfast included",
1115
+ "dayPrice": 276,
1527
1116
  "days": [
1528
- {
1529
- "deal": "206542",
1530
- "price": 271,
1531
- "value": "05/02/2024"
1532
- },
1533
- {
1534
- "deal": "206542",
1535
- "price": 271,
1536
- "value": "06/02/2024"
1537
- },
1538
- {
1539
- "deal": "206542",
1540
- "price": 271,
1541
- "value": "07/02/2024"
1542
- }
1117
+ { "deal": "206542", "price": 276, "value": "05/02/2024" },
1118
+ { "deal": "206542", "price": 276, "value": "06/02/2024" },
1119
+ { "deal": "206542", "price": 276, "value": "07/02/2024" }
1543
1120
  ],
1544
1121
  "deals": ["206542"],
1545
- "discount": {
1546
- "percentage": 0,
1547
- "breakdown": []
1548
- },
1549
- "id": "4824--3842--2281b0--1--206542",
1550
- "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
1551
- "originalPrice": 813,
1552
- "price": 813,
1553
- "name": "Special Offer, Parking included",
1122
+ "discount": { "percentage": 0, "breakdown": [] },
1123
+ "id": "4824--9098--40590b0--1--206542",
1124
+ "originalPrice": 828,
1125
+ "price": 828,
1126
+ "taxes": 82.8,
1127
+ "increment": 108
1128
+ },
1129
+ {
1130
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
1131
+ "rateId": "4824--9098--40590b0",
1132
+ "included": [],
1554
1133
  "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
1555
1134
  "restrictions": [],
1556
- "taxes": 81.3
1135
+ "basePrice": 943.92,
1136
+ "name": "Half board",
1137
+ "dayPrice": 314.64,
1138
+ "days": [
1139
+ { "deal": null, "price": 314.64, "value": "05/02/2024" },
1140
+ { "deal": null, "price": 314.64, "value": "06/02/2024" },
1141
+ { "deal": null, "price": 314.64, "value": "07/02/2024" }
1142
+ ],
1143
+ "deals": [],
1144
+ "discount": { "percentage": 0, "breakdown": [] },
1145
+ "id": "4824--9098--40590b0--2",
1146
+ "originalPrice": 943.92,
1147
+ "price": 943.92,
1148
+ "taxes": 94.39,
1149
+ "increment": 298.91999999999996
1557
1150
  },
1558
1151
  {
1559
- "amount": [1, 2],
1560
- "basePrice": 1003.92,
1561
- "boardName": "Half board",
1562
- "cancellation": {
1563
- "hint": "Free cancellation until Feb 5",
1564
- "title": "Cancellation with no penalty up to some hours before arrival.",
1565
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
1566
- },
1567
- "dayPrice": 334.64,
1152
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
1153
+ "rateId": "4824--9098--40590b0--217946",
1154
+ "included": ["100% ONLINE PREPAYMENT"],
1155
+ "paymentConditions": "Prepayment required: 100%: Online secure payment",
1156
+ "restrictions": [],
1157
+ "basePrice": 943.92,
1158
+ "name": "Half board",
1159
+ "dayPrice": 314.64,
1568
1160
  "days": [
1569
- {
1570
- "deal": "206542",
1571
- "price": 334.64,
1572
- "value": "05/02/2024"
1573
- },
1574
- {
1575
- "deal": "206542",
1576
- "price": 334.64,
1577
- "value": "06/02/2024"
1578
- },
1579
- {
1580
- "deal": "206542",
1581
- "price": 334.64,
1582
- "value": "07/02/2024"
1583
- }
1161
+ { "deal": "217946", "price": 314.64, "value": "05/02/2024" },
1162
+ { "deal": "217946", "price": 314.64, "value": "06/02/2024" },
1163
+ { "deal": "217946", "price": 314.64, "value": "07/02/2024" }
1584
1164
  ],
1585
- "deals": ["206542"],
1586
- "discount": {
1587
- "percentage": 0,
1588
- "breakdown": []
1589
- },
1590
- "id": "4824--3842--2281b0--2--206542",
1165
+ "deals": ["217946"],
1166
+ "discount": { "percentage": 0, "breakdown": [] },
1167
+ "id": "4824--9098--40590b0--2--217946",
1168
+ "originalPrice": 943.92,
1169
+ "price": 943.92,
1170
+ "taxes": 94.39,
1171
+ "increment": 298.91999999999996
1172
+ },
1173
+ {
1174
+ "cancellationId": "freeCancellation-Cancellation with no penalty up to some hours before arrival.",
1175
+ "rateId": "4824--9098--40590b0--206542",
1591
1176
  "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
1592
- "originalPrice": 1003.92,
1593
- "price": 1003.92,
1594
- "name": "Special Offer, Parking included",
1595
1177
  "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
1596
1178
  "restrictions": [],
1597
- "taxes": 100.39
1598
- }
1599
- ],
1600
- "size": "25 m²"
1601
- },
1602
- {
1603
- "amenities": [
1604
- {
1605
- "exclusive": false,
1606
- "id": 2,
1607
- "text": "Refrigerator"
1608
- },
1609
- {
1610
- "exclusive": false,
1611
- "id": 5,
1612
- "text": "Iron"
1613
- },
1614
- {
1615
- "exclusive": false,
1616
- "id": 6,
1617
- "text": "Coffee/tea maker"
1618
- },
1619
- {
1620
- "exclusive": false,
1621
- "id": 69,
1622
- "text": "Desk"
1623
- },
1624
- {
1625
- "exclusive": false,
1626
- "id": 10,
1627
- "text": "Balcony"
1628
- },
1629
- {
1630
- "exclusive": false,
1631
- "id": 11,
1632
- "text": "Radio"
1633
- },
1634
- {
1635
- "exclusive": false,
1636
- "id": 13,
1637
- "text": "Television"
1638
- },
1639
- {
1640
- "exclusive": false,
1641
- "id": 14,
1642
- "text": "Telephone"
1643
- },
1644
- {
1645
- "exclusive": false,
1646
- "id": 15,
1647
- "text": "Air conditioning"
1648
- },
1649
- {
1650
- "exclusive": false,
1651
- "id": 65,
1652
- "text": "Heating"
1653
- },
1654
- {
1655
- "exclusive": false,
1656
- "id": 16,
1657
- "text": "Free mini-bar"
1658
- },
1659
- {
1660
- "exclusive": false,
1661
- "id": 18,
1662
- "text": "Free safe"
1663
- },
1664
- {
1665
- "exclusive": false,
1666
- "id": 22,
1667
- "text": "Free Wi-Fi Internet"
1668
- },
1669
- {
1670
- "exclusive": false,
1671
- "id": 26,
1672
- "text": "Wooden floor"
1673
- },
1674
- {
1675
- "exclusive": false,
1676
- "id": 100,
1677
- "text": "24h luggage storage"
1678
- },
1679
- {
1680
- "exclusive": false,
1681
- "id": 119,
1682
- "text": "Toiletries"
1683
- },
1684
- {
1685
- "exclusive": false,
1686
- "id": 121,
1687
- "text": "Pillow menu"
1688
- },
1689
- {
1690
- "exclusive": false,
1691
- "id": 51,
1692
- "text": "Shower"
1693
- },
1694
- {
1695
- "exclusive": false,
1696
- "id": 57,
1697
- "text": "Hairdryer"
1698
- },
1699
- {
1700
- "exclusive": false,
1701
- "id": 58,
1702
- "text": "Magnifying mirror"
1703
- },
1704
- {
1705
- "exclusive": false,
1706
- "id": 59,
1707
- "text": "Bathrobe"
1708
- },
1709
- {
1710
- "exclusive": false,
1711
- "id": 60,
1712
- "text": "Slippers"
1179
+ "basePrice": 1018.92,
1180
+ "name": "Half board",
1181
+ "dayPrice": 339.64,
1182
+ "days": [
1183
+ { "deal": "206542", "price": 339.64, "value": "05/02/2024" },
1184
+ { "deal": "206542", "price": 339.64, "value": "06/02/2024" },
1185
+ { "deal": "206542", "price": 339.64, "value": "07/02/2024" }
1186
+ ],
1187
+ "deals": ["206542"],
1188
+ "discount": { "percentage": 0, "breakdown": [] },
1189
+ "id": "4824--9098--40590b0--2--206542",
1190
+ "originalPrice": 1018.92,
1191
+ "price": 1018.92,
1192
+ "taxes": 101.89,
1193
+ "increment": 298.91999999999996
1713
1194
  }
1714
1195
  ],
1715
- "availability": 3,
1716
- "bedDisposition": [
1717
- [
1718
- {
1719
- "amount": 1,
1720
- "type": 2
1721
- }
1722
- ]
1723
- ],
1724
- "bedTypes": [2],
1725
1196
  "description": "These exclusive rooms are a step up from standard rooms, each with a balcony overlooking one of the iconic areas in the city of Madrid.",
1726
1197
  "images": [
1727
1198
  {
@@ -1777,377 +1248,6 @@
1777
1248
  ],
1778
1249
  "name": "Premium Room with Balcony",
1779
1250
  "maxOccupation": 2,
1780
- "rates": [
1781
- {
1782
- "amount": [1, 3],
1783
- "basePrice": 645,
1784
- "boardName": "Room only",
1785
- "cancellation": {
1786
- "hint": "Free cancellation until Feb 5",
1787
- "title": "Cancellation with no penalty up to some hours before arrival.",
1788
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
1789
- },
1790
- "dayPrice": 215,
1791
- "days": [
1792
- {
1793
- "deal": null,
1794
- "price": 215,
1795
- "value": "05/02/2024"
1796
- },
1797
- {
1798
- "deal": null,
1799
- "price": 215,
1800
- "value": "06/02/2024"
1801
- },
1802
- {
1803
- "deal": null,
1804
- "price": 215,
1805
- "value": "07/02/2024"
1806
- }
1807
- ],
1808
- "deals": [],
1809
- "discount": {
1810
- "percentage": 0,
1811
- "breakdown": []
1812
- },
1813
- "id": "4824--9098--40590b0--0",
1814
- "included": [],
1815
- "originalPrice": 645,
1816
- "price": 645,
1817
- "name": "Flexible Rate",
1818
- "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
1819
- "restrictions": [],
1820
- "taxes": 64.5
1821
- },
1822
- {
1823
- "amount": [1, 3],
1824
- "basePrice": 753,
1825
- "boardName": "Breakfast included",
1826
- "cancellation": {
1827
- "hint": "Free cancellation until Feb 5",
1828
- "title": "Cancellation with no penalty up to some hours before arrival.",
1829
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
1830
- },
1831
- "dayPrice": 251,
1832
- "days": [
1833
- {
1834
- "deal": null,
1835
- "price": 251,
1836
- "value": "05/02/2024"
1837
- },
1838
- {
1839
- "deal": null,
1840
- "price": 251,
1841
- "value": "06/02/2024"
1842
- },
1843
- {
1844
- "deal": null,
1845
- "price": 251,
1846
- "value": "07/02/2024"
1847
- }
1848
- ],
1849
- "deals": [],
1850
- "discount": {
1851
- "percentage": 0,
1852
- "breakdown": []
1853
- },
1854
- "id": "4824--9098--40590b0--1",
1855
- "included": [],
1856
- "originalPrice": 753,
1857
- "price": 753,
1858
- "name": "Flexible Rate",
1859
- "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
1860
- "restrictions": [],
1861
- "taxes": 75.3
1862
- },
1863
- {
1864
- "amount": [1, 3],
1865
- "basePrice": 943.92,
1866
- "boardName": "Half board",
1867
- "cancellation": {
1868
- "hint": "Free cancellation until Feb 5",
1869
- "title": "Cancellation with no penalty up to some hours before arrival.",
1870
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
1871
- },
1872
- "dayPrice": 314.64,
1873
- "days": [
1874
- {
1875
- "deal": null,
1876
- "price": 314.64,
1877
- "value": "05/02/2024"
1878
- },
1879
- {
1880
- "deal": null,
1881
- "price": 314.64,
1882
- "value": "06/02/2024"
1883
- },
1884
- {
1885
- "deal": null,
1886
- "price": 314.64,
1887
- "value": "07/02/2024"
1888
- }
1889
- ],
1890
- "deals": [],
1891
- "discount": {
1892
- "percentage": 0,
1893
- "breakdown": []
1894
- },
1895
- "id": "4824--9098--40590b0--2",
1896
- "included": [],
1897
- "originalPrice": 943.92,
1898
- "price": 943.92,
1899
- "name": "Flexible Rate",
1900
- "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
1901
- "restrictions": [],
1902
- "taxes": 94.39
1903
- },
1904
- {
1905
- "amount": [1, 3],
1906
- "basePrice": 645,
1907
- "boardName": "Room only",
1908
- "cancellation": {
1909
- "hint": "Free cancellation until Feb 5",
1910
- "title": "Cancellation with no penalty up to some hours before arrival.",
1911
- "text": "You can cancel your reservation for free until 12:00 of the Feb 05, 2024. If you cancel your reservation after this moment, the first night will be charged on your card. The same will apply if you leave the hotel before the end of your reservation or if you do not show up (reservation is kept up to the 1st night)."
1912
- },
1913
- "dayPrice": 215,
1914
- "days": [
1915
- {
1916
- "deal": "217946",
1917
- "price": 215,
1918
- "value": "05/02/2024"
1919
- },
1920
- {
1921
- "deal": "217946",
1922
- "price": 215,
1923
- "value": "06/02/2024"
1924
- },
1925
- {
1926
- "deal": "217946",
1927
- "price": 215,
1928
- "value": "07/02/2024"
1929
- }
1930
- ],
1931
- "deals": ["217946"],
1932
- "discount": {
1933
- "percentage": 0,
1934
- "breakdown": []
1935
- },
1936
- "id": "4824--9098--40590b0--0--217946",
1937
- "included": ["100% ONLINE PREPAYMENT"],
1938
- "originalPrice": 645,
1939
- "price": 645,
1940
- "name": "Flexible Rate, prepayment option",
1941
- "paymentConditions": "Prepayment required: 100%: Online secure payment",
1942
- "restrictions": [],
1943
- "taxes": 64.5
1944
- },
1945
- {
1946
- "amount": [1, 3],
1947
- "basePrice": 753,
1948
- "boardName": "Breakfast included",
1949
- "cancellation": {
1950
- "hint": "Free cancellation until Feb 5",
1951
- "title": "Cancellation with no penalty up to some hours before arrival.",
1952
- "text": "You can cancel your reservation for free until 12:00 of the Feb 05, 2024. If you cancel your reservation after this moment, the first night will be charged on your card. The same will apply if you leave the hotel before the end of your reservation or if you do not show up (reservation is kept up to the 1st night)."
1953
- },
1954
- "dayPrice": 251,
1955
- "days": [
1956
- {
1957
- "deal": "217946",
1958
- "price": 251,
1959
- "value": "05/02/2024"
1960
- },
1961
- {
1962
- "deal": "217946",
1963
- "price": 251,
1964
- "value": "06/02/2024"
1965
- },
1966
- {
1967
- "deal": "217946",
1968
- "price": 251,
1969
- "value": "07/02/2024"
1970
- }
1971
- ],
1972
- "deals": ["217946"],
1973
- "discount": {
1974
- "percentage": 0,
1975
- "breakdown": []
1976
- },
1977
- "id": "4824--9098--40590b0--1--217946",
1978
- "included": ["100% ONLINE PREPAYMENT"],
1979
- "originalPrice": 753,
1980
- "price": 753,
1981
- "name": "Flexible Rate, prepayment option",
1982
- "paymentConditions": "Prepayment required: 100%: Online secure payment",
1983
- "restrictions": [],
1984
- "taxes": 75.3
1985
- },
1986
- {
1987
- "amount": [1, 3],
1988
- "basePrice": 943.92,
1989
- "boardName": "Half board",
1990
- "cancellation": {
1991
- "hint": "Free cancellation until Feb 5",
1992
- "title": "Cancellation with no penalty up to some hours before arrival.",
1993
- "text": "You can cancel your reservation for free until 12:00 of the Feb 05, 2024. If you cancel your reservation after this moment, the first night will be charged on your card. The same will apply if you leave the hotel before the end of your reservation or if you do not show up (reservation is kept up to the 1st night)."
1994
- },
1995
- "dayPrice": 314.64,
1996
- "days": [
1997
- {
1998
- "deal": "217946",
1999
- "price": 314.64,
2000
- "value": "05/02/2024"
2001
- },
2002
- {
2003
- "deal": "217946",
2004
- "price": 314.64,
2005
- "value": "06/02/2024"
2006
- },
2007
- {
2008
- "deal": "217946",
2009
- "price": 314.64,
2010
- "value": "07/02/2024"
2011
- }
2012
- ],
2013
- "deals": ["217946"],
2014
- "discount": {
2015
- "percentage": 0,
2016
- "breakdown": []
2017
- },
2018
- "id": "4824--9098--40590b0--2--217946",
2019
- "included": ["100% ONLINE PREPAYMENT"],
2020
- "originalPrice": 943.92,
2021
- "price": 943.92,
2022
- "name": "Flexible Rate, prepayment option",
2023
- "paymentConditions": "Prepayment required: 100%: Online secure payment",
2024
- "restrictions": [],
2025
- "taxes": 94.39
2026
- },
2027
- {
2028
- "amount": [1, 3],
2029
- "basePrice": 720,
2030
- "boardName": "Room only",
2031
- "cancellation": {
2032
- "hint": "Free cancellation until Feb 5",
2033
- "title": "Cancellation with no penalty up to some hours before arrival.",
2034
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
2035
- },
2036
- "dayPrice": 240,
2037
- "days": [
2038
- {
2039
- "deal": "206542",
2040
- "price": 240,
2041
- "value": "05/02/2024"
2042
- },
2043
- {
2044
- "deal": "206542",
2045
- "price": 240,
2046
- "value": "06/02/2024"
2047
- },
2048
- {
2049
- "deal": "206542",
2050
- "price": 240,
2051
- "value": "07/02/2024"
2052
- }
2053
- ],
2054
- "deals": ["206542"],
2055
- "discount": {
2056
- "percentage": 0,
2057
- "breakdown": []
2058
- },
2059
- "id": "4824--9098--40590b0--0--206542",
2060
- "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
2061
- "originalPrice": 720,
2062
- "price": 720,
2063
- "name": "Special Offer, Parking included",
2064
- "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
2065
- "restrictions": [],
2066
- "taxes": 72
2067
- },
2068
- {
2069
- "amount": [1, 3],
2070
- "basePrice": 828,
2071
- "boardName": "Breakfast included",
2072
- "cancellation": {
2073
- "hint": "Free cancellation until Feb 5",
2074
- "title": "Cancellation with no penalty up to some hours before arrival.",
2075
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
2076
- },
2077
- "dayPrice": 276,
2078
- "days": [
2079
- {
2080
- "deal": "206542",
2081
- "price": 276,
2082
- "value": "05/02/2024"
2083
- },
2084
- {
2085
- "deal": "206542",
2086
- "price": 276,
2087
- "value": "06/02/2024"
2088
- },
2089
- {
2090
- "deal": "206542",
2091
- "price": 276,
2092
- "value": "07/02/2024"
2093
- }
2094
- ],
2095
- "deals": ["206542"],
2096
- "discount": {
2097
- "percentage": 0,
2098
- "breakdown": []
2099
- },
2100
- "id": "4824--9098--40590b0--1--206542",
2101
- "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
2102
- "originalPrice": 828,
2103
- "price": 828,
2104
- "name": "Special Offer, Parking included",
2105
- "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
2106
- "restrictions": [],
2107
- "taxes": 82.8
2108
- },
2109
- {
2110
- "amount": [1, 3],
2111
- "basePrice": 1018.92,
2112
- "boardName": "Half board",
2113
- "cancellation": {
2114
- "hint": "Free cancellation until Feb 5",
2115
- "title": "Cancellation with no penalty up to some hours before arrival.",
2116
- "text": "If the reservation is cancelled after Feb 05, 2024 at 12:00, or in the event of a \"No Show\", one night will be charged to your credit card and the reservation will be automatically cancelled."
2117
- },
2118
- "dayPrice": 339.64,
2119
- "days": [
2120
- {
2121
- "deal": "206542",
2122
- "price": 339.64,
2123
- "value": "05/02/2024"
2124
- },
2125
- {
2126
- "deal": "206542",
2127
- "price": 339.64,
2128
- "value": "06/02/2024"
2129
- },
2130
- {
2131
- "deal": "206542",
2132
- "price": 339.64,
2133
- "value": "07/02/2024"
2134
- }
2135
- ],
2136
- "deals": ["206542"],
2137
- "discount": {
2138
- "percentage": 0,
2139
- "breakdown": []
2140
- },
2141
- "id": "4824--9098--40590b0--2--206542",
2142
- "included": ["SPECIAL PRICE FOR THE PARKING : 25 EUR +10% TAXES"],
2143
- "originalPrice": 1018.92,
2144
- "price": 1018.92,
2145
- "name": "Special Offer, Parking included",
2146
- "paymentConditions": "Pay at the property. Credit Card only as a booking guarantee. ",
2147
- "restrictions": [],
2148
- "taxes": 101.89
2149
- }
2150
- ],
2151
1251
  "size": "25 m²"
2152
1252
  }
2153
1253
  ],