Wiki source code of SearchTourPackages - Basic Version
Last modified by Giorgi Mdivnishvili on 2025/10/22 13:39
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | {{box cssClass="floatinginfobox" title="**Contents**"}} | ||
| 2 | |||
| 3 | |||
| 4 | {{toc/}} | ||
| 5 | {{/box}} | ||
| 6 | |||
| 7 | = Method Description = | ||
| 8 | |||
| 9 | |||
| 10 | === Method Overview: Streamlined Tour Package Discovery and Booking === | ||
| 11 | |||
| 12 | **Purpose:** This method outlines the most efficient process for locating and subsequently booking a tour package utilizing a minimal set of required parameters. It is designed to simplify the user interaction by reducing the complexity and volume of input data necessary for operation. | ||
| 13 | |||
| 14 | **Procedure:** | ||
| 15 | |||
| 16 | 1. **Initialization**: Start by specifying the essential parameters. This approach is engineered to streamline the search and booking process, focusing on the core data elements critical for identifying suitable tour packages. | ||
| 17 | 1. **Search Execution**: Deploy the method with the specified parameters to initiate the search. The system is optimized to process these inputs, conducting a targeted query across available tour packages to identify matches that align with the user's criteria. | ||
| 18 | 1. **Selection and Booking**: Upon receiving search results, the user can select a desired tour package. The booking process is then initiated with the minimal parameters already provided, ensuring a seamless transition from selection to confirmation. | ||
| 19 | |||
| 20 | **Parameter Details:** | ||
| 21 | |||
| 22 | * The parameters required for this method are intentionally limited to essential elements only, aiming to expedite the search and booking phases while maintaining effectiveness. Details on these parameters, including data types and usage instructions, are documented separately. | ||
| 23 | |||
| 24 | **Usage Notes:** | ||
| 25 | |||
| 26 | * This method is particularly beneficial for users seeking a straightforward and efficient path to tour package booking, minimizing decision fatigue and enhancing user experience. | ||
| 27 | |||
| 28 | **Examples:** | ||
| 29 | |||
| 30 | * Code examples and detailed step-by-step instructions for utilizing this method are available in the subsequent sections, providing practical guidance on implementing the streamlined tour package discovery and booking process. | ||
| 31 | |||
| 32 | This documentation segment aims to facilitate developers and users in leveraging a simplified method for tour package exploration and booking, ensuring an efficient and user-friendly interaction with the system. | ||
| 33 | |||
| 34 | **Date Parameters** | ||
| 35 | |||
| 36 | * **checkInDate** — the date when the guest checks into the hotel. | ||
| 37 | * **checkOutDate** — the date of departure from the hotel (the last day of stay). | ||
| 38 | * ((( | ||
| 39 | If only these two parameters are specified during the search, the system will automatically select flight options that correspond to the hotel stay dates. | ||
| 40 | |||
| 41 | In cases where a user wants a longer trip — for example, a **10-day tour** with only **5 days at the hotel** — they can specify flight dates (**departureDate** and **returnDate**) separately from hotel stay dates (**checkInDate** and **checkOutDate**). | ||
| 42 | ))) | ||
| 43 | |||
| 44 | |||
| 45 | == Endpoint URL - [POST] == | ||
| 46 | |||
| 47 | {{info}} | ||
| 48 | [[https:~~/~~/integration.kazunion.com/api/TourPackages/SearchTourPackages>>https://integration.kazunion.com/api/TourPackages/SearchTourPackages]] | ||
| 49 | {{/info}} | ||
| 50 | |||
| 51 | == Request Parameters == | ||
| 52 | |||
| 53 | (% class="box infomessage" %) | ||
| 54 | ((( | ||
| 55 | None | ||
| 56 | ))) | ||
| 57 | |||
| 58 | |||
| 59 | == Request example == | ||
| 60 | |||
| 61 | {{code language="Json"}} | ||
| 62 | { | ||
| 63 | "departureCountryCode": "KZ", | ||
| 64 | "departureCityUID": "f0ba6324-f337-405c-8cc7-23d62cf664e8", | ||
| 65 | "arrivalCountryCode": "AE", | ||
| 66 | "adults": 2, | ||
| 67 | "children": 0, | ||
| 68 | "departureDate": "2024-05-25T00:00:00", | ||
| 69 | "returnDate": "2024-06-01T00:00:00", | ||
| 70 | "departureAndReturnDaysCount": 7, | ||
| 71 | "checkInDate": "2024-05-25T00:00:00", | ||
| 72 | "checkOutDate": "2024-06-01T00:00:00", | ||
| 73 | "checkInAndCheckOutDaysCount": 7, | ||
| 74 | "directFlightsOnly": true, | ||
| 75 | "pageRowCount": 25, | ||
| 76 | "searchCurrency": "USD" | ||
| 77 | } | ||
| 78 | {{/code}} | ||
| 79 | |||
| 80 | == Request example for 2Adults 2Child == | ||
| 81 | |||
| 82 | {{code language="Json"}} | ||
| 83 | |||
| 84 | |||
| 85 | { | ||
| 86 | "departureCountryCode": "KZ", | ||
| 87 | "departureCityUID": "f0ba6324-f337-405c-8cc7-23d62cf664e8", | ||
| 88 | "arrivalCountryCode": "AE", | ||
| 89 | "adults": 2, | ||
| 90 | "children": 2, | ||
| 91 | "childrenAges": [ | ||
| 92 | 4, | ||
| 93 | 8 | ||
| 94 | ], | ||
| 95 | "departureDate": "2024-08-26T00:00:00", | ||
| 96 | "returnDate": "2024-09-02T00:00:00", | ||
| 97 | "departureAndReturnDaysCount": 7, | ||
| 98 | "checkInDate": "2024-08-26T00:00:00", | ||
| 99 | "checkOutDate": "2024-09-02T00:00:00", | ||
| 100 | "checkInAndCheckOutDaysCount": 7, | ||
| 101 | "directFlightsOnly": true, | ||
| 102 | "searchCurrency": "KZT", | ||
| 103 | |||
| 104 | "pagingId": "", | ||
| 105 | "pageNumber": 1, | ||
| 106 | "pageRowCount":5 | ||
| 107 | |||
| 108 | } | ||
| 109 | {{/code}} | ||
| 110 | |||
| 111 | |||
| 112 | == Response Body == | ||
| 113 | |||
| 114 | {{code language="json"}} | ||
| 115 | { | ||
| 116 | "packages": [ | ||
| 117 | { | ||
| 118 | "id": "tour:50ef83aa-9e90-493a-b9ad-c0849c2baa91:f9be75ed-0b50-4598-aece-5b959400c0f0:b7d53209-ea5a-47a9-9074-f82d88dacac4", | ||
| 119 | "priceCurrency": "USD", | ||
| 120 | "totalPrice": 1883.71, | ||
| 121 | "agentCommissionPercent": 9.0, | ||
| 122 | "agentCommissionAmount": 169.53, | ||
| 123 | "includedExtrasAmount": 0, | ||
| 124 | "priceDifference": 0, | ||
| 125 | "hotel": { | ||
| 126 | "hotelPriceId": "f9be75ed-0b50-4598-aece-5b959400c0f0", | ||
| 127 | "hotelName": "Nihal Hotel", | ||
| 128 | "hotelCode": "176cb63d-9ebc-4a87-b12f-efe4b9180ced", | ||
| 129 | "nights": 7, | ||
| 130 | "mealPlan": "RO", | ||
| 131 | "hotelClass": "3", | ||
| 132 | "hotelColor": "#000000", | ||
| 133 | "availabilityType": "FreeSale", | ||
| 134 | "availableRoomsCount": 0, | ||
| 135 | "fewRooms": true, | ||
| 136 | "roomCategoryCode": "2561405f-6942-4f8e-b044-87fd347c0ec5", | ||
| 137 | "roomCategoryName": "Standard Room", | ||
| 138 | "placementTypeName": "DBL + CHILD + CHILD(2-5.99)(6-11.99)sharing", | ||
| 139 | "checkInDate": "2024-08-26T00:00:00", | ||
| 140 | "checkOutDate": "2024-09-02T00:00:00", | ||
| 141 | "adults": 2, | ||
| 142 | "children": 2, | ||
| 143 | "districtUID": "aaff2238-fa72-4900-83f8-a16990415547", | ||
| 144 | "districtName": "Deira", | ||
| 145 | "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2", | ||
| 146 | "cityName": "Dubai", | ||
| 147 | "countryCode": "AE", | ||
| 148 | "countryName": "United Arab Emirates", | ||
| 149 | "hasAlcohol": true, | ||
| 150 | "hasFreeWifi": false, | ||
| 151 | "hasMetro": true, | ||
| 152 | "hasPool": true, | ||
| 153 | "hasMall": false, | ||
| 154 | "infantMaxAge": 5.99, | ||
| 155 | "childMinAge": 6.0, | ||
| 156 | "childMaxAge": 11.99, | ||
| 157 | "teenMinAge": 0.0, | ||
| 158 | "teenMaxAge": 0.0, | ||
| 159 | "adultMinAge": 12.0, | ||
| 160 | "cancellationPolicyDescription": "Cancellation Policy: 2 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 161 | "cancellationPolicy": { | ||
| 162 | "noShowChargeValue": 100.0, | ||
| 163 | "noShowChargeValueType": "%", | ||
| 164 | "earlyDepartureChargeValue": 100.0, | ||
| 165 | "earlyDepartureChargeValueType": "%", | ||
| 166 | "conditions": [ | ||
| 167 | { | ||
| 168 | "timeunits": 2, | ||
| 169 | "timeunitType": "Day", | ||
| 170 | "timeOffsetTypeName": "Before Arrival", | ||
| 171 | "chargeValue": 1.0, | ||
| 172 | "chargeValueType": "Night" | ||
| 173 | } | ||
| 174 | ] | ||
| 175 | } | ||
| 176 | }, | ||
| 177 | "flight": { | ||
| 178 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4", | ||
| 179 | "departureDate": "2024-08-26T00:00:00", | ||
| 180 | "returnDate": "2024-09-02T00:00:00", | ||
| 181 | "departureTicketsLeft": 28, | ||
| 182 | "returnTicketsLeft": 30, | ||
| 183 | "departureAvailabilityType": "FreeSale", | ||
| 184 | "returnAvailabilityType": "FreeSale", | ||
| 185 | "isTwoWay": true, | ||
| 186 | "sameBaggageForAll": false, | ||
| 187 | "totalBaggage": false, | ||
| 188 | "isBlock": true, | ||
| 189 | "class": "Economy", | ||
| 190 | "departureSegments": [ | ||
| 191 | { | ||
| 192 | "airlineCode": "FZ", | ||
| 193 | "airlineName": "Fly Dubai", | ||
| 194 | "flightCode": "FZ1722", | ||
| 195 | "class": "Economy", | ||
| 196 | "lugageWeight": 20, | ||
| 197 | "handLugageWeight": 6, | ||
| 198 | "departureFlightDate": "2024-08-26T03:40:00.000", | ||
| 199 | "departureCountryName": "Kazakhstan", | ||
| 200 | "departureCityName": "Almaty", | ||
| 201 | "departureAirportCode": "ALA", | ||
| 202 | "departureAirportName": "Almaty Intl Airport", | ||
| 203 | "departureTerminalCode": "ALA", | ||
| 204 | "arrivalFlightDate": "2024-08-26T07:15:00.000", | ||
| 205 | "arrivalCountryName": "United Arab Emirates", | ||
| 206 | "arrivalCityName": "Dubai", | ||
| 207 | "arrivalAirportCode": "DXB", | ||
| 208 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 209 | "arrivalTerminalCode": "DXB3", | ||
| 210 | "flightDuration": "5h 35m" | ||
| 211 | } | ||
| 212 | ], | ||
| 213 | "returnSegments": [ | ||
| 214 | { | ||
| 215 | "airlineCode": "FZ", | ||
| 216 | "airlineName": "Fly Dubai", | ||
| 217 | "flightCode": "FZ1721", | ||
| 218 | "class": "Economy", | ||
| 219 | "lugageWeight": 20, | ||
| 220 | "handLugageWeight": 6, | ||
| 221 | "departureFlightDate": "2024-09-02T21:30:00.000", | ||
| 222 | "departureCountryName": "United Arab Emirates", | ||
| 223 | "departureCityName": "Dubai", | ||
| 224 | "departureAirportCode": "DXB", | ||
| 225 | "departureAirportName": "Dubai Intl Airport", | ||
| 226 | "departureTerminalCode": "DXB3", | ||
| 227 | "arrivalFlightDate": "2024-09-03T02:40:00.000", | ||
| 228 | "arrivalCountryName": "Kazakhstan", | ||
| 229 | "arrivalCityName": "Almaty", | ||
| 230 | "arrivalAirportCode": "ALA", | ||
| 231 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 232 | "arrivalTerminalCode": "ALA", | ||
| 233 | "flightDuration": "3h 10m" | ||
| 234 | } | ||
| 235 | ], | ||
| 236 | "passengers": [ | ||
| 237 | { | ||
| 238 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-A1", | ||
| 239 | "isAdult": true, | ||
| 240 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 241 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 242 | "forwardBaggages": [ | ||
| 243 | { | ||
| 244 | "baggageCode": "INCLUDED", | ||
| 245 | "description": "20 Kg Included", | ||
| 246 | "price": 0.0, | ||
| 247 | "currency": "USD", | ||
| 248 | "included": true | ||
| 249 | } | ||
| 250 | ], | ||
| 251 | "backwardBaggages": [ | ||
| 252 | { | ||
| 253 | "baggageCode": "INCLUDED", | ||
| 254 | "description": "20 Kg Included", | ||
| 255 | "price": 0.0, | ||
| 256 | "currency": "USD", | ||
| 257 | "included": true | ||
| 258 | } | ||
| 259 | ] | ||
| 260 | }, | ||
| 261 | { | ||
| 262 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-A2", | ||
| 263 | "isAdult": true, | ||
| 264 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 265 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 266 | "forwardBaggages": [ | ||
| 267 | { | ||
| 268 | "baggageCode": "INCLUDED", | ||
| 269 | "description": "20 Kg Included", | ||
| 270 | "price": 0.0, | ||
| 271 | "currency": "USD", | ||
| 272 | "included": true | ||
| 273 | } | ||
| 274 | ], | ||
| 275 | "backwardBaggages": [ | ||
| 276 | { | ||
| 277 | "baggageCode": "INCLUDED", | ||
| 278 | "description": "20 Kg Included", | ||
| 279 | "price": 0.0, | ||
| 280 | "currency": "USD", | ||
| 281 | "included": true | ||
| 282 | } | ||
| 283 | ] | ||
| 284 | }, | ||
| 285 | { | ||
| 286 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-C1", | ||
| 287 | "isAdult": false, | ||
| 288 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 289 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 290 | "forwardBaggages": [ | ||
| 291 | { | ||
| 292 | "baggageCode": "INCLUDED", | ||
| 293 | "description": "20 Kg Included", | ||
| 294 | "price": 0.0, | ||
| 295 | "currency": "USD", | ||
| 296 | "included": true | ||
| 297 | } | ||
| 298 | ], | ||
| 299 | "backwardBaggages": [ | ||
| 300 | { | ||
| 301 | "baggageCode": "INCLUDED", | ||
| 302 | "description": "20 Kg Included", | ||
| 303 | "price": 0.0, | ||
| 304 | "currency": "USD", | ||
| 305 | "included": true | ||
| 306 | } | ||
| 307 | ] | ||
| 308 | }, | ||
| 309 | { | ||
| 310 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-C2", | ||
| 311 | "isAdult": false, | ||
| 312 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 313 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 314 | "forwardBaggages": [ | ||
| 315 | { | ||
| 316 | "baggageCode": "INCLUDED", | ||
| 317 | "description": "20 Kg Included", | ||
| 318 | "price": 0.0, | ||
| 319 | "currency": "USD", | ||
| 320 | "included": true | ||
| 321 | } | ||
| 322 | ], | ||
| 323 | "backwardBaggages": [ | ||
| 324 | { | ||
| 325 | "baggageCode": "INCLUDED", | ||
| 326 | "description": "20 Kg Included", | ||
| 327 | "price": 0.0, | ||
| 328 | "currency": "USD", | ||
| 329 | "included": true | ||
| 330 | } | ||
| 331 | ] | ||
| 332 | } | ||
| 333 | ] | ||
| 334 | }, | ||
| 335 | "extraServices": [], | ||
| 336 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{3}:i:1", | ||
| 337 | "sortCheckInOut": "26.08.2024-02.09.2024", | ||
| 338 | "sortAirline": "fly dubai", | ||
| 339 | "sortHotelName": "nihal hotel", | ||
| 340 | "sortDetails": "ro", | ||
| 341 | "sortPlacement": "standard room dbl child child 2 5 99 6 11 99 sharing", | ||
| 342 | "subList": [], | ||
| 343 | "exchangeRate": 480.0 | ||
| 344 | }, | ||
| 345 | { | ||
| 346 | "id": "tour:50ef83aa-9e90-493a-b9ad-c0849c2baa91:af1c3f20-548d-4e8e-b976-52aaf9af8b8b:b7d53209-ea5a-47a9-9074-f82d88dacac4", | ||
| 347 | "priceCurrency": "USD", | ||
| 348 | "totalPrice": 1889.76, | ||
| 349 | "agentCommissionPercent": 9.0, | ||
| 350 | "agentCommissionAmount": 170.08, | ||
| 351 | "includedExtrasAmount": 0, | ||
| 352 | "priceDifference": 0, | ||
| 353 | "hotel": { | ||
| 354 | "hotelPriceId": "af1c3f20-548d-4e8e-b976-52aaf9af8b8b", | ||
| 355 | "hotelName": "Six Seasons Hotel", | ||
| 356 | "hotelCode": "b327fcea-afbe-4652-9f0c-8f09d941d5a4", | ||
| 357 | "nights": 7, | ||
| 358 | "mealPlan": "RO", | ||
| 359 | "hotelClass": "3", | ||
| 360 | "hotelColor": "#000000", | ||
| 361 | "availabilityType": "StopSale", | ||
| 362 | "availableRoomsCount": 0, | ||
| 363 | "fewRooms": true, | ||
| 364 | "roomCategoryCode": "5e28afcd-2f9d-4d4c-aefb-fd6c46cf0963", | ||
| 365 | "roomCategoryName": "Standard King Room", | ||
| 366 | "placementTypeName": "DBL + CHILD + CHILD(2-5.99)(6-10.99)sharing", | ||
| 367 | "checkInDate": "2024-08-26T00:00:00", | ||
| 368 | "checkOutDate": "2024-09-02T00:00:00", | ||
| 369 | "adults": 2, | ||
| 370 | "children": 2, | ||
| 371 | "districtUID": "0353f8b7-4649-41f7-97bc-a92c5a288992", | ||
| 372 | "districtName": "Bur Dubai", | ||
| 373 | "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2", | ||
| 374 | "cityName": "Dubai", | ||
| 375 | "countryCode": "AE", | ||
| 376 | "countryName": "United Arab Emirates", | ||
| 377 | "hasAlcohol": true, | ||
| 378 | "hasFreeWifi": true, | ||
| 379 | "hasMetro": false, | ||
| 380 | "hasPool": true, | ||
| 381 | "hasMall": false, | ||
| 382 | "infantMaxAge": 5.99, | ||
| 383 | "childMinAge": 6.0, | ||
| 384 | "childMaxAge": 10.99, | ||
| 385 | "teenMinAge": 0.0, | ||
| 386 | "teenMaxAge": 0.0, | ||
| 387 | "adultMinAge": 11.0, | ||
| 388 | "cancellationPolicyDescription": "Cancellation Policy: Non refundable", | ||
| 389 | "cancellationPolicy": { | ||
| 390 | "noShowChargeValue": 100.0, | ||
| 391 | "noShowChargeValueType": "%", | ||
| 392 | "earlyDepartureChargeValue": 100.0, | ||
| 393 | "earlyDepartureChargeValueType": "%", | ||
| 394 | "conditions": [ | ||
| 395 | { | ||
| 396 | "timeunits": 365, | ||
| 397 | "timeunitType": "Day", | ||
| 398 | "timeOffsetTypeName": "Before Arrival", | ||
| 399 | "chargeValue": 100.0, | ||
| 400 | "chargeValueType": "%" | ||
| 401 | } | ||
| 402 | ] | ||
| 403 | } | ||
| 404 | }, | ||
| 405 | "flight": { | ||
| 406 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4", | ||
| 407 | "departureDate": "2024-08-26T00:00:00", | ||
| 408 | "returnDate": "2024-09-02T00:00:00", | ||
| 409 | "departureTicketsLeft": 28, | ||
| 410 | "returnTicketsLeft": 30, | ||
| 411 | "departureAvailabilityType": "FreeSale", | ||
| 412 | "returnAvailabilityType": "FreeSale", | ||
| 413 | "isTwoWay": true, | ||
| 414 | "sameBaggageForAll": false, | ||
| 415 | "totalBaggage": false, | ||
| 416 | "isBlock": true, | ||
| 417 | "class": "Economy", | ||
| 418 | "departureSegments": [ | ||
| 419 | { | ||
| 420 | "airlineCode": "FZ", | ||
| 421 | "airlineName": "Fly Dubai", | ||
| 422 | "flightCode": "FZ1722", | ||
| 423 | "class": "Economy", | ||
| 424 | "lugageWeight": 20, | ||
| 425 | "handLugageWeight": 6, | ||
| 426 | "departureFlightDate": "2024-08-26T03:40:00.000", | ||
| 427 | "departureCountryName": "Kazakhstan", | ||
| 428 | "departureCityName": "Almaty", | ||
| 429 | "departureAirportCode": "ALA", | ||
| 430 | "departureAirportName": "Almaty Intl Airport", | ||
| 431 | "departureTerminalCode": "ALA", | ||
| 432 | "arrivalFlightDate": "2024-08-26T07:15:00.000", | ||
| 433 | "arrivalCountryName": "United Arab Emirates", | ||
| 434 | "arrivalCityName": "Dubai", | ||
| 435 | "arrivalAirportCode": "DXB", | ||
| 436 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 437 | "arrivalTerminalCode": "DXB3", | ||
| 438 | "flightDuration": "5h 35m" | ||
| 439 | } | ||
| 440 | ], | ||
| 441 | "returnSegments": [ | ||
| 442 | { | ||
| 443 | "airlineCode": "FZ", | ||
| 444 | "airlineName": "Fly Dubai", | ||
| 445 | "flightCode": "FZ1721", | ||
| 446 | "class": "Economy", | ||
| 447 | "lugageWeight": 20, | ||
| 448 | "handLugageWeight": 6, | ||
| 449 | "departureFlightDate": "2024-09-02T21:30:00.000", | ||
| 450 | "departureCountryName": "United Arab Emirates", | ||
| 451 | "departureCityName": "Dubai", | ||
| 452 | "departureAirportCode": "DXB", | ||
| 453 | "departureAirportName": "Dubai Intl Airport", | ||
| 454 | "departureTerminalCode": "DXB3", | ||
| 455 | "arrivalFlightDate": "2024-09-03T02:40:00.000", | ||
| 456 | "arrivalCountryName": "Kazakhstan", | ||
| 457 | "arrivalCityName": "Almaty", | ||
| 458 | "arrivalAirportCode": "ALA", | ||
| 459 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 460 | "arrivalTerminalCode": "ALA", | ||
| 461 | "flightDuration": "3h 10m" | ||
| 462 | } | ||
| 463 | ], | ||
| 464 | "passengers": [ | ||
| 465 | { | ||
| 466 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-A1", | ||
| 467 | "isAdult": true, | ||
| 468 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 469 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 470 | "forwardBaggages": [ | ||
| 471 | { | ||
| 472 | "baggageCode": "INCLUDED", | ||
| 473 | "description": "20 Kg Included", | ||
| 474 | "price": 0.0, | ||
| 475 | "currency": "USD", | ||
| 476 | "included": true | ||
| 477 | } | ||
| 478 | ], | ||
| 479 | "backwardBaggages": [ | ||
| 480 | { | ||
| 481 | "baggageCode": "INCLUDED", | ||
| 482 | "description": "20 Kg Included", | ||
| 483 | "price": 0.0, | ||
| 484 | "currency": "USD", | ||
| 485 | "included": true | ||
| 486 | } | ||
| 487 | ] | ||
| 488 | }, | ||
| 489 | { | ||
| 490 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-A2", | ||
| 491 | "isAdult": true, | ||
| 492 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 493 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 494 | "forwardBaggages": [ | ||
| 495 | { | ||
| 496 | "baggageCode": "INCLUDED", | ||
| 497 | "description": "20 Kg Included", | ||
| 498 | "price": 0.0, | ||
| 499 | "currency": "USD", | ||
| 500 | "included": true | ||
| 501 | } | ||
| 502 | ], | ||
| 503 | "backwardBaggages": [ | ||
| 504 | { | ||
| 505 | "baggageCode": "INCLUDED", | ||
| 506 | "description": "20 Kg Included", | ||
| 507 | "price": 0.0, | ||
| 508 | "currency": "USD", | ||
| 509 | "included": true | ||
| 510 | } | ||
| 511 | ] | ||
| 512 | }, | ||
| 513 | { | ||
| 514 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-C1", | ||
| 515 | "isAdult": false, | ||
| 516 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 517 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 518 | "forwardBaggages": [ | ||
| 519 | { | ||
| 520 | "baggageCode": "INCLUDED", | ||
| 521 | "description": "20 Kg Included", | ||
| 522 | "price": 0.0, | ||
| 523 | "currency": "USD", | ||
| 524 | "included": true | ||
| 525 | } | ||
| 526 | ], | ||
| 527 | "backwardBaggages": [ | ||
| 528 | { | ||
| 529 | "baggageCode": "INCLUDED", | ||
| 530 | "description": "20 Kg Included", | ||
| 531 | "price": 0.0, | ||
| 532 | "currency": "USD", | ||
| 533 | "included": true | ||
| 534 | } | ||
| 535 | ] | ||
| 536 | }, | ||
| 537 | { | ||
| 538 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-C2", | ||
| 539 | "isAdult": false, | ||
| 540 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 541 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 542 | "forwardBaggages": [ | ||
| 543 | { | ||
| 544 | "baggageCode": "INCLUDED", | ||
| 545 | "description": "20 Kg Included", | ||
| 546 | "price": 0.0, | ||
| 547 | "currency": "USD", | ||
| 548 | "included": true | ||
| 549 | } | ||
| 550 | ], | ||
| 551 | "backwardBaggages": [ | ||
| 552 | { | ||
| 553 | "baggageCode": "INCLUDED", | ||
| 554 | "description": "20 Kg Included", | ||
| 555 | "price": 0.0, | ||
| 556 | "currency": "USD", | ||
| 557 | "included": true | ||
| 558 | } | ||
| 559 | ] | ||
| 560 | } | ||
| 561 | ] | ||
| 562 | }, | ||
| 563 | "extraServices": [], | ||
| 564 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{3}:i:2", | ||
| 565 | "sortCheckInOut": "26.08.2024-02.09.2024", | ||
| 566 | "sortAirline": "fly dubai", | ||
| 567 | "sortHotelName": "six seasons hotel", | ||
| 568 | "sortDetails": "ro", | ||
| 569 | "sortPlacement": "standard king room dbl child child 2 5 99 6 10 99 sharing", | ||
| 570 | "subList": [], | ||
| 571 | "exchangeRate": 480.0 | ||
| 572 | }, | ||
| 573 | { | ||
| 574 | "id": "tour:50ef83aa-9e90-493a-b9ad-c0849c2baa91:4c4d7504-f804-44f1-a850-d14708ceb8c8:b7d53209-ea5a-47a9-9074-f82d88dacac4", | ||
| 575 | "priceCurrency": "USD", | ||
| 576 | "totalPrice": 1889.76, | ||
| 577 | "agentCommissionPercent": 9.0, | ||
| 578 | "agentCommissionAmount": 170.08, | ||
| 579 | "includedExtrasAmount": 0, | ||
| 580 | "priceDifference": 0, | ||
| 581 | "hotel": { | ||
| 582 | "hotelPriceId": "4c4d7504-f804-44f1-a850-d14708ceb8c8", | ||
| 583 | "hotelName": "Six Seasons Hotel", | ||
| 584 | "hotelCode": "b327fcea-afbe-4652-9f0c-8f09d941d5a4", | ||
| 585 | "nights": 7, | ||
| 586 | "mealPlan": "RO", | ||
| 587 | "hotelClass": "3", | ||
| 588 | "hotelColor": "#000000", | ||
| 589 | "availabilityType": "StopSale", | ||
| 590 | "availableRoomsCount": 0, | ||
| 591 | "fewRooms": true, | ||
| 592 | "roomCategoryCode": "3476f552-6cb6-46cd-8331-cded195f9da3", | ||
| 593 | "roomCategoryName": "Standard Twin Room", | ||
| 594 | "placementTypeName": "DBL + CHILD + CHILD(2-5.99)(6-10.99)sharing", | ||
| 595 | "checkInDate": "2024-08-26T00:00:00", | ||
| 596 | "checkOutDate": "2024-09-02T00:00:00", | ||
| 597 | "adults": 2, | ||
| 598 | "children": 2, | ||
| 599 | "districtUID": "0353f8b7-4649-41f7-97bc-a92c5a288992", | ||
| 600 | "districtName": "Bur Dubai", | ||
| 601 | "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2", | ||
| 602 | "cityName": "Dubai", | ||
| 603 | "countryCode": "AE", | ||
| 604 | "countryName": "United Arab Emirates", | ||
| 605 | "hasAlcohol": true, | ||
| 606 | "hasFreeWifi": true, | ||
| 607 | "hasMetro": false, | ||
| 608 | "hasPool": true, | ||
| 609 | "hasMall": false, | ||
| 610 | "infantMaxAge": 5.99, | ||
| 611 | "childMinAge": 6.0, | ||
| 612 | "childMaxAge": 10.99, | ||
| 613 | "teenMinAge": 0.0, | ||
| 614 | "teenMaxAge": 0.0, | ||
| 615 | "adultMinAge": 11.0, | ||
| 616 | "cancellationPolicyDescription": "Cancellation Policy: Non refundable", | ||
| 617 | "cancellationPolicy": { | ||
| 618 | "noShowChargeValue": 100.0, | ||
| 619 | "noShowChargeValueType": "%", | ||
| 620 | "earlyDepartureChargeValue": 100.0, | ||
| 621 | "earlyDepartureChargeValueType": "%", | ||
| 622 | "conditions": [ | ||
| 623 | { | ||
| 624 | "timeunits": 365, | ||
| 625 | "timeunitType": "Day", | ||
| 626 | "timeOffsetTypeName": "Before Arrival", | ||
| 627 | "chargeValue": 100.0, | ||
| 628 | "chargeValueType": "%" | ||
| 629 | } | ||
| 630 | ] | ||
| 631 | } | ||
| 632 | }, | ||
| 633 | "flight": { | ||
| 634 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4", | ||
| 635 | "departureDate": "2024-08-26T00:00:00", | ||
| 636 | "returnDate": "2024-09-02T00:00:00", | ||
| 637 | "departureTicketsLeft": 28, | ||
| 638 | "returnTicketsLeft": 30, | ||
| 639 | "departureAvailabilityType": "FreeSale", | ||
| 640 | "returnAvailabilityType": "FreeSale", | ||
| 641 | "isTwoWay": true, | ||
| 642 | "sameBaggageForAll": false, | ||
| 643 | "totalBaggage": false, | ||
| 644 | "isBlock": true, | ||
| 645 | "class": "Economy", | ||
| 646 | "departureSegments": [ | ||
| 647 | { | ||
| 648 | "airlineCode": "FZ", | ||
| 649 | "airlineName": "Fly Dubai", | ||
| 650 | "flightCode": "FZ1722", | ||
| 651 | "class": "Economy", | ||
| 652 | "lugageWeight": 20, | ||
| 653 | "handLugageWeight": 6, | ||
| 654 | "departureFlightDate": "2024-08-26T03:40:00.000", | ||
| 655 | "departureCountryName": "Kazakhstan", | ||
| 656 | "departureCityName": "Almaty", | ||
| 657 | "departureAirportCode": "ALA", | ||
| 658 | "departureAirportName": "Almaty Intl Airport", | ||
| 659 | "departureTerminalCode": "ALA", | ||
| 660 | "arrivalFlightDate": "2024-08-26T07:15:00.000", | ||
| 661 | "arrivalCountryName": "United Arab Emirates", | ||
| 662 | "arrivalCityName": "Dubai", | ||
| 663 | "arrivalAirportCode": "DXB", | ||
| 664 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 665 | "arrivalTerminalCode": "DXB3", | ||
| 666 | "flightDuration": "5h 35m" | ||
| 667 | } | ||
| 668 | ], | ||
| 669 | "returnSegments": [ | ||
| 670 | { | ||
| 671 | "airlineCode": "FZ", | ||
| 672 | "airlineName": "Fly Dubai", | ||
| 673 | "flightCode": "FZ1721", | ||
| 674 | "class": "Economy", | ||
| 675 | "lugageWeight": 20, | ||
| 676 | "handLugageWeight": 6, | ||
| 677 | "departureFlightDate": "2024-09-02T21:30:00.000", | ||
| 678 | "departureCountryName": "United Arab Emirates", | ||
| 679 | "departureCityName": "Dubai", | ||
| 680 | "departureAirportCode": "DXB", | ||
| 681 | "departureAirportName": "Dubai Intl Airport", | ||
| 682 | "departureTerminalCode": "DXB3", | ||
| 683 | "arrivalFlightDate": "2024-09-03T02:40:00.000", | ||
| 684 | "arrivalCountryName": "Kazakhstan", | ||
| 685 | "arrivalCityName": "Almaty", | ||
| 686 | "arrivalAirportCode": "ALA", | ||
| 687 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 688 | "arrivalTerminalCode": "ALA", | ||
| 689 | "flightDuration": "3h 10m" | ||
| 690 | } | ||
| 691 | ], | ||
| 692 | "passengers": [ | ||
| 693 | { | ||
| 694 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-A1", | ||
| 695 | "isAdult": true, | ||
| 696 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 697 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 698 | "forwardBaggages": [ | ||
| 699 | { | ||
| 700 | "baggageCode": "INCLUDED", | ||
| 701 | "description": "20 Kg Included", | ||
| 702 | "price": 0.0, | ||
| 703 | "currency": "USD", | ||
| 704 | "included": true | ||
| 705 | } | ||
| 706 | ], | ||
| 707 | "backwardBaggages": [ | ||
| 708 | { | ||
| 709 | "baggageCode": "INCLUDED", | ||
| 710 | "description": "20 Kg Included", | ||
| 711 | "price": 0.0, | ||
| 712 | "currency": "USD", | ||
| 713 | "included": true | ||
| 714 | } | ||
| 715 | ] | ||
| 716 | }, | ||
| 717 | { | ||
| 718 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-A2", | ||
| 719 | "isAdult": true, | ||
| 720 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 721 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 722 | "forwardBaggages": [ | ||
| 723 | { | ||
| 724 | "baggageCode": "INCLUDED", | ||
| 725 | "description": "20 Kg Included", | ||
| 726 | "price": 0.0, | ||
| 727 | "currency": "USD", | ||
| 728 | "included": true | ||
| 729 | } | ||
| 730 | ], | ||
| 731 | "backwardBaggages": [ | ||
| 732 | { | ||
| 733 | "baggageCode": "INCLUDED", | ||
| 734 | "description": "20 Kg Included", | ||
| 735 | "price": 0.0, | ||
| 736 | "currency": "USD", | ||
| 737 | "included": true | ||
| 738 | } | ||
| 739 | ] | ||
| 740 | }, | ||
| 741 | { | ||
| 742 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-C1", | ||
| 743 | "isAdult": false, | ||
| 744 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 745 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 746 | "forwardBaggages": [ | ||
| 747 | { | ||
| 748 | "baggageCode": "INCLUDED", | ||
| 749 | "description": "20 Kg Included", | ||
| 750 | "price": 0.0, | ||
| 751 | "currency": "USD", | ||
| 752 | "included": true | ||
| 753 | } | ||
| 754 | ], | ||
| 755 | "backwardBaggages": [ | ||
| 756 | { | ||
| 757 | "baggageCode": "INCLUDED", | ||
| 758 | "description": "20 Kg Included", | ||
| 759 | "price": 0.0, | ||
| 760 | "currency": "USD", | ||
| 761 | "included": true | ||
| 762 | } | ||
| 763 | ] | ||
| 764 | }, | ||
| 765 | { | ||
| 766 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-C2", | ||
| 767 | "isAdult": false, | ||
| 768 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 769 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 770 | "forwardBaggages": [ | ||
| 771 | { | ||
| 772 | "baggageCode": "INCLUDED", | ||
| 773 | "description": "20 Kg Included", | ||
| 774 | "price": 0.0, | ||
| 775 | "currency": "USD", | ||
| 776 | "included": true | ||
| 777 | } | ||
| 778 | ], | ||
| 779 | "backwardBaggages": [ | ||
| 780 | { | ||
| 781 | "baggageCode": "INCLUDED", | ||
| 782 | "description": "20 Kg Included", | ||
| 783 | "price": 0.0, | ||
| 784 | "currency": "USD", | ||
| 785 | "included": true | ||
| 786 | } | ||
| 787 | ] | ||
| 788 | } | ||
| 789 | ] | ||
| 790 | }, | ||
| 791 | "extraServices": [], | ||
| 792 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{3}:i:3", | ||
| 793 | "sortCheckInOut": "26.08.2024-02.09.2024", | ||
| 794 | "sortAirline": "fly dubai", | ||
| 795 | "sortHotelName": "six seasons hotel", | ||
| 796 | "sortDetails": "ro", | ||
| 797 | "sortPlacement": "standard twin room dbl child child 2 5 99 6 10 99 sharing", | ||
| 798 | "subList": [], | ||
| 799 | "exchangeRate": 480.0 | ||
| 800 | }, | ||
| 801 | { | ||
| 802 | "id": "tour:50ef83aa-9e90-493a-b9ad-c0849c2baa91:7deeaa1b-791d-4776-8665-9fb950004728:b7d53209-ea5a-47a9-9074-f82d88dacac4", | ||
| 803 | "priceCurrency": "USD", | ||
| 804 | "totalPrice": 1904.71, | ||
| 805 | "agentCommissionPercent": 9.0, | ||
| 806 | "agentCommissionAmount": 171.42, | ||
| 807 | "includedExtrasAmount": 0, | ||
| 808 | "priceDifference": 0, | ||
| 809 | "hotel": { | ||
| 810 | "hotelPriceId": "7deeaa1b-791d-4776-8665-9fb950004728", | ||
| 811 | "hotelName": "Landmark Hotel Baniyas", | ||
| 812 | "hotelCode": "66958df7-37ce-40bb-8f68-0e1b8e1c159c", | ||
| 813 | "nights": 7, | ||
| 814 | "mealPlan": "RO", | ||
| 815 | "hotelClass": "3", | ||
| 816 | "hotelColor": "#000000", | ||
| 817 | "availabilityType": "FreeSale", | ||
| 818 | "availableRoomsCount": 0, | ||
| 819 | "fewRooms": true, | ||
| 820 | "roomCategoryCode": "b9fef308-64a8-45d8-ac65-127c8df6ae3c", | ||
| 821 | "roomCategoryName": "Standard Room", | ||
| 822 | "placementTypeName": "DBL + CHILD + CHILD(2-4.99)(5-11.99)sharing", | ||
| 823 | "checkInDate": "2024-08-26T00:00:00", | ||
| 824 | "checkOutDate": "2024-09-02T00:00:00", | ||
| 825 | "adults": 2, | ||
| 826 | "children": 2, | ||
| 827 | "districtUID": "aaff2238-fa72-4900-83f8-a16990415547", | ||
| 828 | "districtName": "Deira", | ||
| 829 | "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2", | ||
| 830 | "cityName": "Dubai", | ||
| 831 | "countryCode": "AE", | ||
| 832 | "countryName": "United Arab Emirates", | ||
| 833 | "hasAlcohol": false, | ||
| 834 | "hasFreeWifi": true, | ||
| 835 | "hasMetro": true, | ||
| 836 | "hasPool": true, | ||
| 837 | "hasMall": false, | ||
| 838 | "infantMaxAge": 4.99, | ||
| 839 | "childMinAge": 5.0, | ||
| 840 | "childMaxAge": 11.99, | ||
| 841 | "teenMinAge": 0.0, | ||
| 842 | "teenMaxAge": 0.0, | ||
| 843 | "adultMinAge": 12.0, | ||
| 844 | "cancellationPolicyDescription": "Cancellation Policy: Non refundable", | ||
| 845 | "cancellationPolicy": { | ||
| 846 | "noShowChargeValue": 100.0, | ||
| 847 | "noShowChargeValueType": "%", | ||
| 848 | "earlyDepartureChargeValue": 100.0, | ||
| 849 | "earlyDepartureChargeValueType": "%", | ||
| 850 | "conditions": [ | ||
| 851 | { | ||
| 852 | "timeunits": 365, | ||
| 853 | "timeunitType": "Day", | ||
| 854 | "timeOffsetTypeName": "Before Arrival", | ||
| 855 | "chargeValue": 100.0, | ||
| 856 | "chargeValueType": "%" | ||
| 857 | } | ||
| 858 | ] | ||
| 859 | } | ||
| 860 | }, | ||
| 861 | "flight": { | ||
| 862 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4", | ||
| 863 | "departureDate": "2024-08-26T00:00:00", | ||
| 864 | "returnDate": "2024-09-02T00:00:00", | ||
| 865 | "departureTicketsLeft": 28, | ||
| 866 | "returnTicketsLeft": 30, | ||
| 867 | "departureAvailabilityType": "FreeSale", | ||
| 868 | "returnAvailabilityType": "FreeSale", | ||
| 869 | "isTwoWay": true, | ||
| 870 | "sameBaggageForAll": false, | ||
| 871 | "totalBaggage": false, | ||
| 872 | "isBlock": true, | ||
| 873 | "class": "Economy", | ||
| 874 | "departureSegments": [ | ||
| 875 | { | ||
| 876 | "airlineCode": "FZ", | ||
| 877 | "airlineName": "Fly Dubai", | ||
| 878 | "flightCode": "FZ1722", | ||
| 879 | "class": "Economy", | ||
| 880 | "lugageWeight": 20, | ||
| 881 | "handLugageWeight": 6, | ||
| 882 | "departureFlightDate": "2024-08-26T03:40:00.000", | ||
| 883 | "departureCountryName": "Kazakhstan", | ||
| 884 | "departureCityName": "Almaty", | ||
| 885 | "departureAirportCode": "ALA", | ||
| 886 | "departureAirportName": "Almaty Intl Airport", | ||
| 887 | "departureTerminalCode": "ALA", | ||
| 888 | "arrivalFlightDate": "2024-08-26T07:15:00.000", | ||
| 889 | "arrivalCountryName": "United Arab Emirates", | ||
| 890 | "arrivalCityName": "Dubai", | ||
| 891 | "arrivalAirportCode": "DXB", | ||
| 892 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 893 | "arrivalTerminalCode": "DXB3", | ||
| 894 | "flightDuration": "5h 35m" | ||
| 895 | } | ||
| 896 | ], | ||
| 897 | "returnSegments": [ | ||
| 898 | { | ||
| 899 | "airlineCode": "FZ", | ||
| 900 | "airlineName": "Fly Dubai", | ||
| 901 | "flightCode": "FZ1721", | ||
| 902 | "class": "Economy", | ||
| 903 | "lugageWeight": 20, | ||
| 904 | "handLugageWeight": 6, | ||
| 905 | "departureFlightDate": "2024-09-02T21:30:00.000", | ||
| 906 | "departureCountryName": "United Arab Emirates", | ||
| 907 | "departureCityName": "Dubai", | ||
| 908 | "departureAirportCode": "DXB", | ||
| 909 | "departureAirportName": "Dubai Intl Airport", | ||
| 910 | "departureTerminalCode": "DXB3", | ||
| 911 | "arrivalFlightDate": "2024-09-03T02:40:00.000", | ||
| 912 | "arrivalCountryName": "Kazakhstan", | ||
| 913 | "arrivalCityName": "Almaty", | ||
| 914 | "arrivalAirportCode": "ALA", | ||
| 915 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 916 | "arrivalTerminalCode": "ALA", | ||
| 917 | "flightDuration": "3h 10m" | ||
| 918 | } | ||
| 919 | ], | ||
| 920 | "passengers": [ | ||
| 921 | { | ||
| 922 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-A1", | ||
| 923 | "isAdult": true, | ||
| 924 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 925 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 926 | "forwardBaggages": [ | ||
| 927 | { | ||
| 928 | "baggageCode": "INCLUDED", | ||
| 929 | "description": "20 Kg Included", | ||
| 930 | "price": 0.0, | ||
| 931 | "currency": "USD", | ||
| 932 | "included": true | ||
| 933 | } | ||
| 934 | ], | ||
| 935 | "backwardBaggages": [ | ||
| 936 | { | ||
| 937 | "baggageCode": "INCLUDED", | ||
| 938 | "description": "20 Kg Included", | ||
| 939 | "price": 0.0, | ||
| 940 | "currency": "USD", | ||
| 941 | "included": true | ||
| 942 | } | ||
| 943 | ] | ||
| 944 | }, | ||
| 945 | { | ||
| 946 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-A2", | ||
| 947 | "isAdult": true, | ||
| 948 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 949 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 950 | "forwardBaggages": [ | ||
| 951 | { | ||
| 952 | "baggageCode": "INCLUDED", | ||
| 953 | "description": "20 Kg Included", | ||
| 954 | "price": 0.0, | ||
| 955 | "currency": "USD", | ||
| 956 | "included": true | ||
| 957 | } | ||
| 958 | ], | ||
| 959 | "backwardBaggages": [ | ||
| 960 | { | ||
| 961 | "baggageCode": "INCLUDED", | ||
| 962 | "description": "20 Kg Included", | ||
| 963 | "price": 0.0, | ||
| 964 | "currency": "USD", | ||
| 965 | "included": true | ||
| 966 | } | ||
| 967 | ] | ||
| 968 | }, | ||
| 969 | { | ||
| 970 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-C1", | ||
| 971 | "isAdult": false, | ||
| 972 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 973 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 974 | "forwardBaggages": [ | ||
| 975 | { | ||
| 976 | "baggageCode": "INCLUDED", | ||
| 977 | "description": "20 Kg Included", | ||
| 978 | "price": 0.0, | ||
| 979 | "currency": "USD", | ||
| 980 | "included": true | ||
| 981 | } | ||
| 982 | ], | ||
| 983 | "backwardBaggages": [ | ||
| 984 | { | ||
| 985 | "baggageCode": "INCLUDED", | ||
| 986 | "description": "20 Kg Included", | ||
| 987 | "price": 0.0, | ||
| 988 | "currency": "USD", | ||
| 989 | "included": true | ||
| 990 | } | ||
| 991 | ] | ||
| 992 | }, | ||
| 993 | { | ||
| 994 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-C2", | ||
| 995 | "isAdult": false, | ||
| 996 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 997 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 998 | "forwardBaggages": [ | ||
| 999 | { | ||
| 1000 | "baggageCode": "INCLUDED", | ||
| 1001 | "description": "20 Kg Included", | ||
| 1002 | "price": 0.0, | ||
| 1003 | "currency": "USD", | ||
| 1004 | "included": true | ||
| 1005 | } | ||
| 1006 | ], | ||
| 1007 | "backwardBaggages": [ | ||
| 1008 | { | ||
| 1009 | "baggageCode": "INCLUDED", | ||
| 1010 | "description": "20 Kg Included", | ||
| 1011 | "price": 0.0, | ||
| 1012 | "currency": "USD", | ||
| 1013 | "included": true | ||
| 1014 | } | ||
| 1015 | ] | ||
| 1016 | } | ||
| 1017 | ] | ||
| 1018 | }, | ||
| 1019 | "extraServices": [], | ||
| 1020 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{3}:i:4", | ||
| 1021 | "sortCheckInOut": "26.08.2024-02.09.2024", | ||
| 1022 | "sortAirline": "fly dubai", | ||
| 1023 | "sortHotelName": "landmark hotel baniyas", | ||
| 1024 | "sortDetails": "ro", | ||
| 1025 | "sortPlacement": "standard room dbl child child 2 4 99 5 11 99 sharing", | ||
| 1026 | "subList": [], | ||
| 1027 | "exchangeRate": 480.0 | ||
| 1028 | }, | ||
| 1029 | { | ||
| 1030 | "id": "tour:50ef83aa-9e90-493a-b9ad-c0849c2baa91:214212b7-8044-4019-9faf-42a6add1c729:b7d53209-ea5a-47a9-9074-f82d88dacac4", | ||
| 1031 | "priceCurrency": "USD", | ||
| 1032 | "totalPrice": 1904.71, | ||
| 1033 | "agentCommissionPercent": 9.0, | ||
| 1034 | "agentCommissionAmount": 171.42, | ||
| 1035 | "includedExtrasAmount": 0, | ||
| 1036 | "priceDifference": 0, | ||
| 1037 | "hotel": { | ||
| 1038 | "hotelPriceId": "214212b7-8044-4019-9faf-42a6add1c729", | ||
| 1039 | "hotelName": "Landmark Plaza Hotel Baniyas", | ||
| 1040 | "hotelCode": "b6b87970-36a9-428f-837a-14057c64e9c7", | ||
| 1041 | "nights": 7, | ||
| 1042 | "mealPlan": "RO", | ||
| 1043 | "hotelClass": "3", | ||
| 1044 | "hotelColor": "#000000", | ||
| 1045 | "availabilityType": "FreeSale", | ||
| 1046 | "availableRoomsCount": 0, | ||
| 1047 | "fewRooms": true, | ||
| 1048 | "roomCategoryCode": "1dae952a-d96a-4bb8-b13f-baaf0106b1ea", | ||
| 1049 | "roomCategoryName": "Standard Room", | ||
| 1050 | "placementTypeName": "DBL + CHILD + CHILD(2-4.99)(5-11.99)sharing", | ||
| 1051 | "checkInDate": "2024-08-26T00:00:00", | ||
| 1052 | "checkOutDate": "2024-09-02T00:00:00", | ||
| 1053 | "adults": 2, | ||
| 1054 | "children": 2, | ||
| 1055 | "districtUID": "aaff2238-fa72-4900-83f8-a16990415547", | ||
| 1056 | "districtName": "Deira", | ||
| 1057 | "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2", | ||
| 1058 | "cityName": "Dubai", | ||
| 1059 | "countryCode": "AE", | ||
| 1060 | "countryName": "United Arab Emirates", | ||
| 1061 | "hasAlcohol": false, | ||
| 1062 | "hasFreeWifi": true, | ||
| 1063 | "hasMetro": true, | ||
| 1064 | "hasPool": true, | ||
| 1065 | "hasMall": false, | ||
| 1066 | "infantMaxAge": 4.99, | ||
| 1067 | "childMinAge": 5.0, | ||
| 1068 | "childMaxAge": 11.99, | ||
| 1069 | "teenMinAge": 0.0, | ||
| 1070 | "teenMaxAge": 0.0, | ||
| 1071 | "adultMinAge": 12.0, | ||
| 1072 | "cancellationPolicyDescription": "Cancellation Policy: Non refundable", | ||
| 1073 | "cancellationPolicy": { | ||
| 1074 | "noShowChargeValue": 100.0, | ||
| 1075 | "noShowChargeValueType": "%", | ||
| 1076 | "earlyDepartureChargeValue": 100.0, | ||
| 1077 | "earlyDepartureChargeValueType": "%", | ||
| 1078 | "conditions": [ | ||
| 1079 | { | ||
| 1080 | "timeunits": 365, | ||
| 1081 | "timeunitType": "Day", | ||
| 1082 | "timeOffsetTypeName": "Before Arrival", | ||
| 1083 | "chargeValue": 100.0, | ||
| 1084 | "chargeValueType": "%" | ||
| 1085 | } | ||
| 1086 | ] | ||
| 1087 | } | ||
| 1088 | }, | ||
| 1089 | "flight": { | ||
| 1090 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4", | ||
| 1091 | "departureDate": "2024-08-26T00:00:00", | ||
| 1092 | "returnDate": "2024-09-02T00:00:00", | ||
| 1093 | "departureTicketsLeft": 28, | ||
| 1094 | "returnTicketsLeft": 30, | ||
| 1095 | "departureAvailabilityType": "FreeSale", | ||
| 1096 | "returnAvailabilityType": "FreeSale", | ||
| 1097 | "isTwoWay": true, | ||
| 1098 | "sameBaggageForAll": false, | ||
| 1099 | "totalBaggage": false, | ||
| 1100 | "isBlock": true, | ||
| 1101 | "class": "Economy", | ||
| 1102 | "departureSegments": [ | ||
| 1103 | { | ||
| 1104 | "airlineCode": "FZ", | ||
| 1105 | "airlineName": "Fly Dubai", | ||
| 1106 | "flightCode": "FZ1722", | ||
| 1107 | "class": "Economy", | ||
| 1108 | "lugageWeight": 20, | ||
| 1109 | "handLugageWeight": 6, | ||
| 1110 | "departureFlightDate": "2024-08-26T03:40:00.000", | ||
| 1111 | "departureCountryName": "Kazakhstan", | ||
| 1112 | "departureCityName": "Almaty", | ||
| 1113 | "departureAirportCode": "ALA", | ||
| 1114 | "departureAirportName": "Almaty Intl Airport", | ||
| 1115 | "departureTerminalCode": "ALA", | ||
| 1116 | "arrivalFlightDate": "2024-08-26T07:15:00.000", | ||
| 1117 | "arrivalCountryName": "United Arab Emirates", | ||
| 1118 | "arrivalCityName": "Dubai", | ||
| 1119 | "arrivalAirportCode": "DXB", | ||
| 1120 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 1121 | "arrivalTerminalCode": "DXB3", | ||
| 1122 | "flightDuration": "5h 35m" | ||
| 1123 | } | ||
| 1124 | ], | ||
| 1125 | "returnSegments": [ | ||
| 1126 | { | ||
| 1127 | "airlineCode": "FZ", | ||
| 1128 | "airlineName": "Fly Dubai", | ||
| 1129 | "flightCode": "FZ1721", | ||
| 1130 | "class": "Economy", | ||
| 1131 | "lugageWeight": 20, | ||
| 1132 | "handLugageWeight": 6, | ||
| 1133 | "departureFlightDate": "2024-09-02T21:30:00.000", | ||
| 1134 | "departureCountryName": "United Arab Emirates", | ||
| 1135 | "departureCityName": "Dubai", | ||
| 1136 | "departureAirportCode": "DXB", | ||
| 1137 | "departureAirportName": "Dubai Intl Airport", | ||
| 1138 | "departureTerminalCode": "DXB3", | ||
| 1139 | "arrivalFlightDate": "2024-09-03T02:40:00.000", | ||
| 1140 | "arrivalCountryName": "Kazakhstan", | ||
| 1141 | "arrivalCityName": "Almaty", | ||
| 1142 | "arrivalAirportCode": "ALA", | ||
| 1143 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 1144 | "arrivalTerminalCode": "ALA", | ||
| 1145 | "flightDuration": "3h 10m" | ||
| 1146 | } | ||
| 1147 | ], | ||
| 1148 | "passengers": [ | ||
| 1149 | { | ||
| 1150 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-A1", | ||
| 1151 | "isAdult": true, | ||
| 1152 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 1153 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 1154 | "forwardBaggages": [ | ||
| 1155 | { | ||
| 1156 | "baggageCode": "INCLUDED", | ||
| 1157 | "description": "20 Kg Included", | ||
| 1158 | "price": 0.0, | ||
| 1159 | "currency": "USD", | ||
| 1160 | "included": true | ||
| 1161 | } | ||
| 1162 | ], | ||
| 1163 | "backwardBaggages": [ | ||
| 1164 | { | ||
| 1165 | "baggageCode": "INCLUDED", | ||
| 1166 | "description": "20 Kg Included", | ||
| 1167 | "price": 0.0, | ||
| 1168 | "currency": "USD", | ||
| 1169 | "included": true | ||
| 1170 | } | ||
| 1171 | ] | ||
| 1172 | }, | ||
| 1173 | { | ||
| 1174 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-A2", | ||
| 1175 | "isAdult": true, | ||
| 1176 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 1177 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 1178 | "forwardBaggages": [ | ||
| 1179 | { | ||
| 1180 | "baggageCode": "INCLUDED", | ||
| 1181 | "description": "20 Kg Included", | ||
| 1182 | "price": 0.0, | ||
| 1183 | "currency": "USD", | ||
| 1184 | "included": true | ||
| 1185 | } | ||
| 1186 | ], | ||
| 1187 | "backwardBaggages": [ | ||
| 1188 | { | ||
| 1189 | "baggageCode": "INCLUDED", | ||
| 1190 | "description": "20 Kg Included", | ||
| 1191 | "price": 0.0, | ||
| 1192 | "currency": "USD", | ||
| 1193 | "included": true | ||
| 1194 | } | ||
| 1195 | ] | ||
| 1196 | }, | ||
| 1197 | { | ||
| 1198 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-C1", | ||
| 1199 | "isAdult": false, | ||
| 1200 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 1201 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 1202 | "forwardBaggages": [ | ||
| 1203 | { | ||
| 1204 | "baggageCode": "INCLUDED", | ||
| 1205 | "description": "20 Kg Included", | ||
| 1206 | "price": 0.0, | ||
| 1207 | "currency": "USD", | ||
| 1208 | "included": true | ||
| 1209 | } | ||
| 1210 | ], | ||
| 1211 | "backwardBaggages": [ | ||
| 1212 | { | ||
| 1213 | "baggageCode": "INCLUDED", | ||
| 1214 | "description": "20 Kg Included", | ||
| 1215 | "price": 0.0, | ||
| 1216 | "currency": "USD", | ||
| 1217 | "included": true | ||
| 1218 | } | ||
| 1219 | ] | ||
| 1220 | }, | ||
| 1221 | { | ||
| 1222 | "id": "b7d53209-ea5a-47a9-9074-f82d88dacac4-C2", | ||
| 1223 | "isAdult": false, | ||
| 1224 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 1225 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 1226 | "forwardBaggages": [ | ||
| 1227 | { | ||
| 1228 | "baggageCode": "INCLUDED", | ||
| 1229 | "description": "20 Kg Included", | ||
| 1230 | "price": 0.0, | ||
| 1231 | "currency": "USD", | ||
| 1232 | "included": true | ||
| 1233 | } | ||
| 1234 | ], | ||
| 1235 | "backwardBaggages": [ | ||
| 1236 | { | ||
| 1237 | "baggageCode": "INCLUDED", | ||
| 1238 | "description": "20 Kg Included", | ||
| 1239 | "price": 0.0, | ||
| 1240 | "currency": "USD", | ||
| 1241 | "included": true | ||
| 1242 | } | ||
| 1243 | ] | ||
| 1244 | } | ||
| 1245 | ] | ||
| 1246 | }, | ||
| 1247 | "extraServices": [], | ||
| 1248 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{3}:i:5", | ||
| 1249 | "sortCheckInOut": "26.08.2024-02.09.2024", | ||
| 1250 | "sortAirline": "fly dubai", | ||
| 1251 | "sortHotelName": "landmark plaza hotel baniyas", | ||
| 1252 | "sortDetails": "ro", | ||
| 1253 | "sortPlacement": "standard room dbl child child 2 4 99 5 11 99 sharing", | ||
| 1254 | "subList": [], | ||
| 1255 | "exchangeRate": 480.0 | ||
| 1256 | } | ||
| 1257 | ], | ||
| 1258 | "pagingId": "3", | ||
| 1259 | "pageNumber": 1, | ||
| 1260 | "pageCount": 30, | ||
| 1261 | "totalCount": 147, | ||
| 1262 | "error": false | ||
| 1263 | } | ||
| 1264 | {{/code}} | ||
| 1265 | |||
| 1266 | |||
| 1267 | == Response example == | ||
| 1268 | |||
| 1269 | {{code language="Json"}} | ||
| 1270 | { | ||
| 1271 | "packages": [ | ||
| 1272 | { | ||
| 1273 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:956bd513-fd7f-4f58-a08d-78a5f0e342c5:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 1274 | "priceCurrency": "USD", | ||
| 1275 | "totalPrice": 1470.11, | ||
| 1276 | "agentCommissionPercent": 9.0, | ||
| 1277 | "agentCommissionAmount": 132.31, | ||
| 1278 | "includedExtrasAmount": 0, | ||
| 1279 | "priceDifference": 0, | ||
| 1280 | "hotel": { | ||
| 1281 | "hotelPriceId": "956bd513-fd7f-4f58-a08d-78a5f0e342c5", | ||
| 1282 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 1283 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 1284 | "nights": 7, | ||
| 1285 | "mealPlan": "BB", | ||
| 1286 | "hotelClass": "5", | ||
| 1287 | "hotelColor": "#000000", | ||
| 1288 | "availabilityType": "FreeSale", | ||
| 1289 | "availableRoomsCount": 0, | ||
| 1290 | "fewRooms": true, | ||
| 1291 | "roomCategoryCode": "53bd7e89-2c04-4944-b706-be67857fc076", | ||
| 1292 | "roomCategoryName": "King Guest Room", | ||
| 1293 | "placementTypeName": "DBL", | ||
| 1294 | "checkInDate": "2024-09-07T00:00:00", | ||
| 1295 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 1296 | "adults": 2, | ||
| 1297 | "children": 0, | ||
| 1298 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 1299 | "districtName": "Al Aqah", | ||
| 1300 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 1301 | "cityName": "Fujairah", | ||
| 1302 | "countryCode": "AE", | ||
| 1303 | "countryName": "United Arab Emirates", | ||
| 1304 | "hasAlcohol": true, | ||
| 1305 | "hasFreeWifi": true, | ||
| 1306 | "hasMetro": false, | ||
| 1307 | "hasPool": true, | ||
| 1308 | "hasMall": false, | ||
| 1309 | "infantMaxAge": 1.99, | ||
| 1310 | "childMinAge": 2.0, | ||
| 1311 | "childMaxAge": 11.99, | ||
| 1312 | "teenMinAge": 0.0, | ||
| 1313 | "teenMaxAge": 0.0, | ||
| 1314 | "adultMinAge": 12.0, | ||
| 1315 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 1316 | "cancellationPolicy": { | ||
| 1317 | "noShowChargeValue": 100.0, | ||
| 1318 | "noShowChargeValueType": "%", | ||
| 1319 | "earlyDepartureChargeValue": 100.0, | ||
| 1320 | "earlyDepartureChargeValueType": "%", | ||
| 1321 | "conditions": [ | ||
| 1322 | { | ||
| 1323 | "timeunits": 4, | ||
| 1324 | "timeunitType": "Day", | ||
| 1325 | "timeOffsetTypeName": "Before Arrival", | ||
| 1326 | "chargeValue": 100.0, | ||
| 1327 | "chargeValueType": "%" | ||
| 1328 | } | ||
| 1329 | ] | ||
| 1330 | } | ||
| 1331 | }, | ||
| 1332 | "flight": { | ||
| 1333 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 1334 | "departureDate": "2024-09-07T00:00:00", | ||
| 1335 | "returnDate": "2024-09-14T00:00:00", | ||
| 1336 | "departureTicketsLeft": 24, | ||
| 1337 | "returnTicketsLeft": 17, | ||
| 1338 | "departureAvailabilityType": "FreeSale", | ||
| 1339 | "returnAvailabilityType": "FreeSale", | ||
| 1340 | "isTwoWay": true, | ||
| 1341 | "sameBaggageForAll": false, | ||
| 1342 | "totalBaggage": false, | ||
| 1343 | "isBlock": true, | ||
| 1344 | "class": "Economy", | ||
| 1345 | "departureSegments": [ | ||
| 1346 | { | ||
| 1347 | "airlineCode": "FZ", | ||
| 1348 | "airlineName": "Fly Dubai", | ||
| 1349 | "flightCode": "FZ1722", | ||
| 1350 | "class": "Economy", | ||
| 1351 | "lugageWeight": 20, | ||
| 1352 | "handLugageWeight": 6, | ||
| 1353 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 1354 | "departureCountryName": "Kazakhstan", | ||
| 1355 | "departureCityName": "Almaty", | ||
| 1356 | "departureAirportCode": "ALA", | ||
| 1357 | "departureAirportName": "Almaty Intl Airport", | ||
| 1358 | "departureTerminalCode": "ALA", | ||
| 1359 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 1360 | "arrivalCountryName": "United Arab Emirates", | ||
| 1361 | "arrivalCityName": "Dubai", | ||
| 1362 | "arrivalAirportCode": "DXB", | ||
| 1363 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 1364 | "arrivalTerminalCode": "DXB3", | ||
| 1365 | "flightDuration": "5h 35m" | ||
| 1366 | } | ||
| 1367 | ], | ||
| 1368 | "returnSegments": [ | ||
| 1369 | { | ||
| 1370 | "airlineCode": "FZ", | ||
| 1371 | "airlineName": "Fly Dubai", | ||
| 1372 | "flightCode": "FZ1721", | ||
| 1373 | "class": "Economy", | ||
| 1374 | "lugageWeight": 20, | ||
| 1375 | "handLugageWeight": 6, | ||
| 1376 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 1377 | "departureCountryName": "United Arab Emirates", | ||
| 1378 | "departureCityName": "Dubai", | ||
| 1379 | "departureAirportCode": "DXB", | ||
| 1380 | "departureAirportName": "Dubai Intl Airport", | ||
| 1381 | "departureTerminalCode": "DXB3", | ||
| 1382 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 1383 | "arrivalCountryName": "Kazakhstan", | ||
| 1384 | "arrivalCityName": "Almaty", | ||
| 1385 | "arrivalAirportCode": "ALA", | ||
| 1386 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 1387 | "arrivalTerminalCode": "ALA", | ||
| 1388 | "flightDuration": "3h 10m" | ||
| 1389 | } | ||
| 1390 | ], | ||
| 1391 | "passengers": [ | ||
| 1392 | { | ||
| 1393 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 1394 | "isAdult": true, | ||
| 1395 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 1396 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 1397 | "forwardBaggages": [ | ||
| 1398 | { | ||
| 1399 | "baggageCode": "INCLUDED", | ||
| 1400 | "description": "20 Kg Included", | ||
| 1401 | "price": 0.0, | ||
| 1402 | "currency": "USD", | ||
| 1403 | "included": true | ||
| 1404 | } | ||
| 1405 | ], | ||
| 1406 | "backwardBaggages": [ | ||
| 1407 | { | ||
| 1408 | "baggageCode": "INCLUDED", | ||
| 1409 | "description": "20 Kg Included", | ||
| 1410 | "price": 0.0, | ||
| 1411 | "currency": "USD", | ||
| 1412 | "included": true | ||
| 1413 | } | ||
| 1414 | ] | ||
| 1415 | }, | ||
| 1416 | { | ||
| 1417 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 1418 | "isAdult": true, | ||
| 1419 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 1420 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 1421 | "forwardBaggages": [ | ||
| 1422 | { | ||
| 1423 | "baggageCode": "INCLUDED", | ||
| 1424 | "description": "20 Kg Included", | ||
| 1425 | "price": 0.0, | ||
| 1426 | "currency": "USD", | ||
| 1427 | "included": true | ||
| 1428 | } | ||
| 1429 | ], | ||
| 1430 | "backwardBaggages": [ | ||
| 1431 | { | ||
| 1432 | "baggageCode": "INCLUDED", | ||
| 1433 | "description": "20 Kg Included", | ||
| 1434 | "price": 0.0, | ||
| 1435 | "currency": "USD", | ||
| 1436 | "included": true | ||
| 1437 | } | ||
| 1438 | ] | ||
| 1439 | } | ||
| 1440 | ] | ||
| 1441 | }, | ||
| 1442 | "extraServices": [], | ||
| 1443 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:1", | ||
| 1444 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 1445 | "sortAirline": "fly dubai", | ||
| 1446 | "sortHotelName": "fujairah rotana resort spa", | ||
| 1447 | "sortDetails": "bb", | ||
| 1448 | "sortPlacement": "king guest room dbl", | ||
| 1449 | "subList": [], | ||
| 1450 | "exchangeRate": 480.0 | ||
| 1451 | }, | ||
| 1452 | { | ||
| 1453 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:021039ae-7ff6-41dd-813a-f1905665a133:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 1454 | "priceCurrency": "USD", | ||
| 1455 | "totalPrice": 1470.11, | ||
| 1456 | "agentCommissionPercent": 9.0, | ||
| 1457 | "agentCommissionAmount": 132.31, | ||
| 1458 | "includedExtrasAmount": 0, | ||
| 1459 | "priceDifference": 0, | ||
| 1460 | "hotel": { | ||
| 1461 | "hotelPriceId": "021039ae-7ff6-41dd-813a-f1905665a133", | ||
| 1462 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 1463 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 1464 | "nights": 7, | ||
| 1465 | "mealPlan": "BB", | ||
| 1466 | "hotelClass": "5", | ||
| 1467 | "hotelColor": "#000000", | ||
| 1468 | "availabilityType": "FreeSale", | ||
| 1469 | "availableRoomsCount": 0, | ||
| 1470 | "fewRooms": true, | ||
| 1471 | "roomCategoryCode": "e6019a5a-760a-4cb1-9117-643ced101fb5", | ||
| 1472 | "roomCategoryName": "Twin Guest Room", | ||
| 1473 | "placementTypeName": "DBL", | ||
| 1474 | "checkInDate": "2024-09-07T00:00:00", | ||
| 1475 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 1476 | "adults": 2, | ||
| 1477 | "children": 0, | ||
| 1478 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 1479 | "districtName": "Al Aqah", | ||
| 1480 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 1481 | "cityName": "Fujairah", | ||
| 1482 | "countryCode": "AE", | ||
| 1483 | "countryName": "United Arab Emirates", | ||
| 1484 | "hasAlcohol": true, | ||
| 1485 | "hasFreeWifi": true, | ||
| 1486 | "hasMetro": false, | ||
| 1487 | "hasPool": true, | ||
| 1488 | "hasMall": false, | ||
| 1489 | "infantMaxAge": 1.99, | ||
| 1490 | "childMinAge": 2.0, | ||
| 1491 | "childMaxAge": 11.99, | ||
| 1492 | "teenMinAge": 0.0, | ||
| 1493 | "teenMaxAge": 0.0, | ||
| 1494 | "adultMinAge": 12.0, | ||
| 1495 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 1496 | "cancellationPolicy": { | ||
| 1497 | "noShowChargeValue": 100.0, | ||
| 1498 | "noShowChargeValueType": "%", | ||
| 1499 | "earlyDepartureChargeValue": 100.0, | ||
| 1500 | "earlyDepartureChargeValueType": "%", | ||
| 1501 | "conditions": [ | ||
| 1502 | { | ||
| 1503 | "timeunits": 4, | ||
| 1504 | "timeunitType": "Day", | ||
| 1505 | "timeOffsetTypeName": "Before Arrival", | ||
| 1506 | "chargeValue": 100.0, | ||
| 1507 | "chargeValueType": "%" | ||
| 1508 | } | ||
| 1509 | ] | ||
| 1510 | } | ||
| 1511 | }, | ||
| 1512 | "flight": { | ||
| 1513 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 1514 | "departureDate": "2024-09-07T00:00:00", | ||
| 1515 | "returnDate": "2024-09-14T00:00:00", | ||
| 1516 | "departureTicketsLeft": 24, | ||
| 1517 | "returnTicketsLeft": 17, | ||
| 1518 | "departureAvailabilityType": "FreeSale", | ||
| 1519 | "returnAvailabilityType": "FreeSale", | ||
| 1520 | "isTwoWay": true, | ||
| 1521 | "sameBaggageForAll": false, | ||
| 1522 | "totalBaggage": false, | ||
| 1523 | "isBlock": true, | ||
| 1524 | "class": "Economy", | ||
| 1525 | "departureSegments": [ | ||
| 1526 | { | ||
| 1527 | "airlineCode": "FZ", | ||
| 1528 | "airlineName": "Fly Dubai", | ||
| 1529 | "flightCode": "FZ1722", | ||
| 1530 | "class": "Economy", | ||
| 1531 | "lugageWeight": 20, | ||
| 1532 | "handLugageWeight": 6, | ||
| 1533 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 1534 | "departureCountryName": "Kazakhstan", | ||
| 1535 | "departureCityName": "Almaty", | ||
| 1536 | "departureAirportCode": "ALA", | ||
| 1537 | "departureAirportName": "Almaty Intl Airport", | ||
| 1538 | "departureTerminalCode": "ALA", | ||
| 1539 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 1540 | "arrivalCountryName": "United Arab Emirates", | ||
| 1541 | "arrivalCityName": "Dubai", | ||
| 1542 | "arrivalAirportCode": "DXB", | ||
| 1543 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 1544 | "arrivalTerminalCode": "DXB3", | ||
| 1545 | "flightDuration": "5h 35m" | ||
| 1546 | } | ||
| 1547 | ], | ||
| 1548 | "returnSegments": [ | ||
| 1549 | { | ||
| 1550 | "airlineCode": "FZ", | ||
| 1551 | "airlineName": "Fly Dubai", | ||
| 1552 | "flightCode": "FZ1721", | ||
| 1553 | "class": "Economy", | ||
| 1554 | "lugageWeight": 20, | ||
| 1555 | "handLugageWeight": 6, | ||
| 1556 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 1557 | "departureCountryName": "United Arab Emirates", | ||
| 1558 | "departureCityName": "Dubai", | ||
| 1559 | "departureAirportCode": "DXB", | ||
| 1560 | "departureAirportName": "Dubai Intl Airport", | ||
| 1561 | "departureTerminalCode": "DXB3", | ||
| 1562 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 1563 | "arrivalCountryName": "Kazakhstan", | ||
| 1564 | "arrivalCityName": "Almaty", | ||
| 1565 | "arrivalAirportCode": "ALA", | ||
| 1566 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 1567 | "arrivalTerminalCode": "ALA", | ||
| 1568 | "flightDuration": "3h 10m" | ||
| 1569 | } | ||
| 1570 | ], | ||
| 1571 | "passengers": [ | ||
| 1572 | { | ||
| 1573 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 1574 | "isAdult": true, | ||
| 1575 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 1576 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 1577 | "forwardBaggages": [ | ||
| 1578 | { | ||
| 1579 | "baggageCode": "INCLUDED", | ||
| 1580 | "description": "20 Kg Included", | ||
| 1581 | "price": 0.0, | ||
| 1582 | "currency": "USD", | ||
| 1583 | "included": true | ||
| 1584 | } | ||
| 1585 | ], | ||
| 1586 | "backwardBaggages": [ | ||
| 1587 | { | ||
| 1588 | "baggageCode": "INCLUDED", | ||
| 1589 | "description": "20 Kg Included", | ||
| 1590 | "price": 0.0, | ||
| 1591 | "currency": "USD", | ||
| 1592 | "included": true | ||
| 1593 | } | ||
| 1594 | ] | ||
| 1595 | }, | ||
| 1596 | { | ||
| 1597 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 1598 | "isAdult": true, | ||
| 1599 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 1600 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 1601 | "forwardBaggages": [ | ||
| 1602 | { | ||
| 1603 | "baggageCode": "INCLUDED", | ||
| 1604 | "description": "20 Kg Included", | ||
| 1605 | "price": 0.0, | ||
| 1606 | "currency": "USD", | ||
| 1607 | "included": true | ||
| 1608 | } | ||
| 1609 | ], | ||
| 1610 | "backwardBaggages": [ | ||
| 1611 | { | ||
| 1612 | "baggageCode": "INCLUDED", | ||
| 1613 | "description": "20 Kg Included", | ||
| 1614 | "price": 0.0, | ||
| 1615 | "currency": "USD", | ||
| 1616 | "included": true | ||
| 1617 | } | ||
| 1618 | ] | ||
| 1619 | } | ||
| 1620 | ] | ||
| 1621 | }, | ||
| 1622 | "extraServices": [], | ||
| 1623 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:2", | ||
| 1624 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 1625 | "sortAirline": "fly dubai", | ||
| 1626 | "sortHotelName": "fujairah rotana resort spa", | ||
| 1627 | "sortDetails": "bb", | ||
| 1628 | "sortPlacement": "twin guest room dbl", | ||
| 1629 | "subList": [], | ||
| 1630 | "exchangeRate": 480.0 | ||
| 1631 | }, | ||
| 1632 | { | ||
| 1633 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:4e5c12ae-c66d-41f8-9a57-44f265cfb1a4:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 1634 | "priceCurrency": "USD", | ||
| 1635 | "totalPrice": 1470.11, | ||
| 1636 | "agentCommissionPercent": 9.0, | ||
| 1637 | "agentCommissionAmount": 132.31, | ||
| 1638 | "includedExtrasAmount": 0, | ||
| 1639 | "priceDifference": 0, | ||
| 1640 | "hotel": { | ||
| 1641 | "hotelPriceId": "4e5c12ae-c66d-41f8-9a57-44f265cfb1a4", | ||
| 1642 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 1643 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 1644 | "nights": 7, | ||
| 1645 | "mealPlan": "BB", | ||
| 1646 | "hotelClass": "5", | ||
| 1647 | "hotelColor": "#000000", | ||
| 1648 | "availabilityType": "FreeSale", | ||
| 1649 | "availableRoomsCount": 0, | ||
| 1650 | "fewRooms": true, | ||
| 1651 | "roomCategoryCode": "e6019a5a-760a-4cb1-9117-643ced101fb5", | ||
| 1652 | "roomCategoryName": "Twin Guest Room", | ||
| 1653 | "placementTypeName": "DBL", | ||
| 1654 | "checkInDate": "2024-09-07T00:00:00", | ||
| 1655 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 1656 | "adults": 2, | ||
| 1657 | "children": 0, | ||
| 1658 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 1659 | "districtName": "Al Aqah", | ||
| 1660 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 1661 | "cityName": "Fujairah", | ||
| 1662 | "countryCode": "AE", | ||
| 1663 | "countryName": "United Arab Emirates", | ||
| 1664 | "hasAlcohol": true, | ||
| 1665 | "hasFreeWifi": true, | ||
| 1666 | "hasMetro": false, | ||
| 1667 | "hasPool": true, | ||
| 1668 | "hasMall": false, | ||
| 1669 | "infantMaxAge": 1.99, | ||
| 1670 | "childMinAge": 2.0, | ||
| 1671 | "childMaxAge": 11.99, | ||
| 1672 | "teenMinAge": 0.0, | ||
| 1673 | "teenMaxAge": 0.0, | ||
| 1674 | "adultMinAge": 12.0, | ||
| 1675 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 1676 | "cancellationPolicy": { | ||
| 1677 | "noShowChargeValue": 100.0, | ||
| 1678 | "noShowChargeValueType": "%", | ||
| 1679 | "earlyDepartureChargeValue": 100.0, | ||
| 1680 | "earlyDepartureChargeValueType": "%", | ||
| 1681 | "conditions": [ | ||
| 1682 | { | ||
| 1683 | "timeunits": 4, | ||
| 1684 | "timeunitType": "Day", | ||
| 1685 | "timeOffsetTypeName": "Before Arrival", | ||
| 1686 | "chargeValue": 100.0, | ||
| 1687 | "chargeValueType": "%" | ||
| 1688 | } | ||
| 1689 | ] | ||
| 1690 | } | ||
| 1691 | }, | ||
| 1692 | "flight": { | ||
| 1693 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 1694 | "departureDate": "2024-09-07T00:00:00", | ||
| 1695 | "returnDate": "2024-09-14T00:00:00", | ||
| 1696 | "departureTicketsLeft": 24, | ||
| 1697 | "returnTicketsLeft": 17, | ||
| 1698 | "departureAvailabilityType": "FreeSale", | ||
| 1699 | "returnAvailabilityType": "FreeSale", | ||
| 1700 | "isTwoWay": true, | ||
| 1701 | "sameBaggageForAll": false, | ||
| 1702 | "totalBaggage": false, | ||
| 1703 | "isBlock": true, | ||
| 1704 | "class": "Economy", | ||
| 1705 | "departureSegments": [ | ||
| 1706 | { | ||
| 1707 | "airlineCode": "FZ", | ||
| 1708 | "airlineName": "Fly Dubai", | ||
| 1709 | "flightCode": "FZ1722", | ||
| 1710 | "class": "Economy", | ||
| 1711 | "lugageWeight": 20, | ||
| 1712 | "handLugageWeight": 6, | ||
| 1713 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 1714 | "departureCountryName": "Kazakhstan", | ||
| 1715 | "departureCityName": "Almaty", | ||
| 1716 | "departureAirportCode": "ALA", | ||
| 1717 | "departureAirportName": "Almaty Intl Airport", | ||
| 1718 | "departureTerminalCode": "ALA", | ||
| 1719 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 1720 | "arrivalCountryName": "United Arab Emirates", | ||
| 1721 | "arrivalCityName": "Dubai", | ||
| 1722 | "arrivalAirportCode": "DXB", | ||
| 1723 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 1724 | "arrivalTerminalCode": "DXB3", | ||
| 1725 | "flightDuration": "5h 35m" | ||
| 1726 | } | ||
| 1727 | ], | ||
| 1728 | "returnSegments": [ | ||
| 1729 | { | ||
| 1730 | "airlineCode": "FZ", | ||
| 1731 | "airlineName": "Fly Dubai", | ||
| 1732 | "flightCode": "FZ1721", | ||
| 1733 | "class": "Economy", | ||
| 1734 | "lugageWeight": 20, | ||
| 1735 | "handLugageWeight": 6, | ||
| 1736 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 1737 | "departureCountryName": "United Arab Emirates", | ||
| 1738 | "departureCityName": "Dubai", | ||
| 1739 | "departureAirportCode": "DXB", | ||
| 1740 | "departureAirportName": "Dubai Intl Airport", | ||
| 1741 | "departureTerminalCode": "DXB3", | ||
| 1742 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 1743 | "arrivalCountryName": "Kazakhstan", | ||
| 1744 | "arrivalCityName": "Almaty", | ||
| 1745 | "arrivalAirportCode": "ALA", | ||
| 1746 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 1747 | "arrivalTerminalCode": "ALA", | ||
| 1748 | "flightDuration": "3h 10m" | ||
| 1749 | } | ||
| 1750 | ], | ||
| 1751 | "passengers": [ | ||
| 1752 | { | ||
| 1753 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 1754 | "isAdult": true, | ||
| 1755 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 1756 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 1757 | "forwardBaggages": [ | ||
| 1758 | { | ||
| 1759 | "baggageCode": "INCLUDED", | ||
| 1760 | "description": "20 Kg Included", | ||
| 1761 | "price": 0.0, | ||
| 1762 | "currency": "USD", | ||
| 1763 | "included": true | ||
| 1764 | } | ||
| 1765 | ], | ||
| 1766 | "backwardBaggages": [ | ||
| 1767 | { | ||
| 1768 | "baggageCode": "INCLUDED", | ||
| 1769 | "description": "20 Kg Included", | ||
| 1770 | "price": 0.0, | ||
| 1771 | "currency": "USD", | ||
| 1772 | "included": true | ||
| 1773 | } | ||
| 1774 | ] | ||
| 1775 | }, | ||
| 1776 | { | ||
| 1777 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 1778 | "isAdult": true, | ||
| 1779 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 1780 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 1781 | "forwardBaggages": [ | ||
| 1782 | { | ||
| 1783 | "baggageCode": "INCLUDED", | ||
| 1784 | "description": "20 Kg Included", | ||
| 1785 | "price": 0.0, | ||
| 1786 | "currency": "USD", | ||
| 1787 | "included": true | ||
| 1788 | } | ||
| 1789 | ], | ||
| 1790 | "backwardBaggages": [ | ||
| 1791 | { | ||
| 1792 | "baggageCode": "INCLUDED", | ||
| 1793 | "description": "20 Kg Included", | ||
| 1794 | "price": 0.0, | ||
| 1795 | "currency": "USD", | ||
| 1796 | "included": true | ||
| 1797 | } | ||
| 1798 | ] | ||
| 1799 | } | ||
| 1800 | ] | ||
| 1801 | }, | ||
| 1802 | "extraServices": [], | ||
| 1803 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:3", | ||
| 1804 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 1805 | "sortAirline": "fly dubai", | ||
| 1806 | "sortHotelName": "fujairah rotana resort spa", | ||
| 1807 | "sortDetails": "bb", | ||
| 1808 | "sortPlacement": "twin guest room dbl", | ||
| 1809 | "subList": [], | ||
| 1810 | "exchangeRate": 480.0 | ||
| 1811 | }, | ||
| 1812 | { | ||
| 1813 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:041b1313-3161-4bef-b77b-175364412285:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 1814 | "priceCurrency": "USD", | ||
| 1815 | "totalPrice": 1470.11, | ||
| 1816 | "agentCommissionPercent": 9.0, | ||
| 1817 | "agentCommissionAmount": 132.31, | ||
| 1818 | "includedExtrasAmount": 0, | ||
| 1819 | "priceDifference": 0, | ||
| 1820 | "hotel": { | ||
| 1821 | "hotelPriceId": "041b1313-3161-4bef-b77b-175364412285", | ||
| 1822 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 1823 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 1824 | "nights": 7, | ||
| 1825 | "mealPlan": "BB", | ||
| 1826 | "hotelClass": "5", | ||
| 1827 | "hotelColor": "#000000", | ||
| 1828 | "availabilityType": "FreeSale", | ||
| 1829 | "availableRoomsCount": 0, | ||
| 1830 | "fewRooms": true, | ||
| 1831 | "roomCategoryCode": "53bd7e89-2c04-4944-b706-be67857fc076", | ||
| 1832 | "roomCategoryName": "King Guest Room", | ||
| 1833 | "placementTypeName": "DBL", | ||
| 1834 | "checkInDate": "2024-09-07T00:00:00", | ||
| 1835 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 1836 | "adults": 2, | ||
| 1837 | "children": 0, | ||
| 1838 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 1839 | "districtName": "Al Aqah", | ||
| 1840 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 1841 | "cityName": "Fujairah", | ||
| 1842 | "countryCode": "AE", | ||
| 1843 | "countryName": "United Arab Emirates", | ||
| 1844 | "hasAlcohol": true, | ||
| 1845 | "hasFreeWifi": true, | ||
| 1846 | "hasMetro": false, | ||
| 1847 | "hasPool": true, | ||
| 1848 | "hasMall": false, | ||
| 1849 | "infantMaxAge": 1.99, | ||
| 1850 | "childMinAge": 2.0, | ||
| 1851 | "childMaxAge": 11.99, | ||
| 1852 | "teenMinAge": 0.0, | ||
| 1853 | "teenMaxAge": 0.0, | ||
| 1854 | "adultMinAge": 12.0, | ||
| 1855 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 1856 | "cancellationPolicy": { | ||
| 1857 | "noShowChargeValue": 100.0, | ||
| 1858 | "noShowChargeValueType": "%", | ||
| 1859 | "earlyDepartureChargeValue": 100.0, | ||
| 1860 | "earlyDepartureChargeValueType": "%", | ||
| 1861 | "conditions": [ | ||
| 1862 | { | ||
| 1863 | "timeunits": 4, | ||
| 1864 | "timeunitType": "Day", | ||
| 1865 | "timeOffsetTypeName": "Before Arrival", | ||
| 1866 | "chargeValue": 100.0, | ||
| 1867 | "chargeValueType": "%" | ||
| 1868 | } | ||
| 1869 | ] | ||
| 1870 | } | ||
| 1871 | }, | ||
| 1872 | "flight": { | ||
| 1873 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 1874 | "departureDate": "2024-09-07T00:00:00", | ||
| 1875 | "returnDate": "2024-09-14T00:00:00", | ||
| 1876 | "departureTicketsLeft": 24, | ||
| 1877 | "returnTicketsLeft": 17, | ||
| 1878 | "departureAvailabilityType": "FreeSale", | ||
| 1879 | "returnAvailabilityType": "FreeSale", | ||
| 1880 | "isTwoWay": true, | ||
| 1881 | "sameBaggageForAll": false, | ||
| 1882 | "totalBaggage": false, | ||
| 1883 | "isBlock": true, | ||
| 1884 | "class": "Economy", | ||
| 1885 | "departureSegments": [ | ||
| 1886 | { | ||
| 1887 | "airlineCode": "FZ", | ||
| 1888 | "airlineName": "Fly Dubai", | ||
| 1889 | "flightCode": "FZ1722", | ||
| 1890 | "class": "Economy", | ||
| 1891 | "lugageWeight": 20, | ||
| 1892 | "handLugageWeight": 6, | ||
| 1893 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 1894 | "departureCountryName": "Kazakhstan", | ||
| 1895 | "departureCityName": "Almaty", | ||
| 1896 | "departureAirportCode": "ALA", | ||
| 1897 | "departureAirportName": "Almaty Intl Airport", | ||
| 1898 | "departureTerminalCode": "ALA", | ||
| 1899 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 1900 | "arrivalCountryName": "United Arab Emirates", | ||
| 1901 | "arrivalCityName": "Dubai", | ||
| 1902 | "arrivalAirportCode": "DXB", | ||
| 1903 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 1904 | "arrivalTerminalCode": "DXB3", | ||
| 1905 | "flightDuration": "5h 35m" | ||
| 1906 | } | ||
| 1907 | ], | ||
| 1908 | "returnSegments": [ | ||
| 1909 | { | ||
| 1910 | "airlineCode": "FZ", | ||
| 1911 | "airlineName": "Fly Dubai", | ||
| 1912 | "flightCode": "FZ1721", | ||
| 1913 | "class": "Economy", | ||
| 1914 | "lugageWeight": 20, | ||
| 1915 | "handLugageWeight": 6, | ||
| 1916 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 1917 | "departureCountryName": "United Arab Emirates", | ||
| 1918 | "departureCityName": "Dubai", | ||
| 1919 | "departureAirportCode": "DXB", | ||
| 1920 | "departureAirportName": "Dubai Intl Airport", | ||
| 1921 | "departureTerminalCode": "DXB3", | ||
| 1922 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 1923 | "arrivalCountryName": "Kazakhstan", | ||
| 1924 | "arrivalCityName": "Almaty", | ||
| 1925 | "arrivalAirportCode": "ALA", | ||
| 1926 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 1927 | "arrivalTerminalCode": "ALA", | ||
| 1928 | "flightDuration": "3h 10m" | ||
| 1929 | } | ||
| 1930 | ], | ||
| 1931 | "passengers": [ | ||
| 1932 | { | ||
| 1933 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 1934 | "isAdult": true, | ||
| 1935 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 1936 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 1937 | "forwardBaggages": [ | ||
| 1938 | { | ||
| 1939 | "baggageCode": "INCLUDED", | ||
| 1940 | "description": "20 Kg Included", | ||
| 1941 | "price": 0.0, | ||
| 1942 | "currency": "USD", | ||
| 1943 | "included": true | ||
| 1944 | } | ||
| 1945 | ], | ||
| 1946 | "backwardBaggages": [ | ||
| 1947 | { | ||
| 1948 | "baggageCode": "INCLUDED", | ||
| 1949 | "description": "20 Kg Included", | ||
| 1950 | "price": 0.0, | ||
| 1951 | "currency": "USD", | ||
| 1952 | "included": true | ||
| 1953 | } | ||
| 1954 | ] | ||
| 1955 | }, | ||
| 1956 | { | ||
| 1957 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 1958 | "isAdult": true, | ||
| 1959 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 1960 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 1961 | "forwardBaggages": [ | ||
| 1962 | { | ||
| 1963 | "baggageCode": "INCLUDED", | ||
| 1964 | "description": "20 Kg Included", | ||
| 1965 | "price": 0.0, | ||
| 1966 | "currency": "USD", | ||
| 1967 | "included": true | ||
| 1968 | } | ||
| 1969 | ], | ||
| 1970 | "backwardBaggages": [ | ||
| 1971 | { | ||
| 1972 | "baggageCode": "INCLUDED", | ||
| 1973 | "description": "20 Kg Included", | ||
| 1974 | "price": 0.0, | ||
| 1975 | "currency": "USD", | ||
| 1976 | "included": true | ||
| 1977 | } | ||
| 1978 | ] | ||
| 1979 | } | ||
| 1980 | ] | ||
| 1981 | }, | ||
| 1982 | "extraServices": [], | ||
| 1983 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:4", | ||
| 1984 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 1985 | "sortAirline": "fly dubai", | ||
| 1986 | "sortHotelName": "fujairah rotana resort spa", | ||
| 1987 | "sortDetails": "bb", | ||
| 1988 | "sortPlacement": "king guest room dbl", | ||
| 1989 | "subList": [], | ||
| 1990 | "exchangeRate": 480.0 | ||
| 1991 | }, | ||
| 1992 | { | ||
| 1993 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:e07af67f-48e8-493f-bc5e-c2d6aa711298:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 1994 | "priceCurrency": "USD", | ||
| 1995 | "totalPrice": 1494.11, | ||
| 1996 | "agentCommissionPercent": 9.0, | ||
| 1997 | "agentCommissionAmount": 134.47, | ||
| 1998 | "includedExtrasAmount": 0, | ||
| 1999 | "priceDifference": 0, | ||
| 2000 | "hotel": { | ||
| 2001 | "hotelPriceId": "e07af67f-48e8-493f-bc5e-c2d6aa711298", | ||
| 2002 | "hotelName": "Le Meridien Al Aqah Beach Resort", | ||
| 2003 | "hotelCode": "63300069-0631-4c34-946e-d2ca9753ff6e", | ||
| 2004 | "nights": 7, | ||
| 2005 | "mealPlan": "BB", | ||
| 2006 | "hotelClass": "5", | ||
| 2007 | "hotelColor": "#000000", | ||
| 2008 | "availabilityType": "FreeSale", | ||
| 2009 | "availableRoomsCount": 0, | ||
| 2010 | "fewRooms": true, | ||
| 2011 | "roomCategoryCode": "97ccbf2f-7195-4eea-9d45-926fbe73b482", | ||
| 2012 | "roomCategoryName": "Deluxe Guest Room", | ||
| 2013 | "placementTypeName": "DBL", | ||
| 2014 | "checkInDate": "2024-09-07T00:00:00", | ||
| 2015 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 2016 | "adults": 2, | ||
| 2017 | "children": 0, | ||
| 2018 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 2019 | "districtName": "Al Aqah", | ||
| 2020 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 2021 | "cityName": "Fujairah", | ||
| 2022 | "countryCode": "AE", | ||
| 2023 | "countryName": "United Arab Emirates", | ||
| 2024 | "hasAlcohol": true, | ||
| 2025 | "hasFreeWifi": true, | ||
| 2026 | "hasMetro": false, | ||
| 2027 | "hasPool": true, | ||
| 2028 | "hasMall": false, | ||
| 2029 | "infantMaxAge": 1.99, | ||
| 2030 | "childMinAge": 2.0, | ||
| 2031 | "childMaxAge": 11.99, | ||
| 2032 | "teenMinAge": 12.0, | ||
| 2033 | "teenMaxAge": 15.99, | ||
| 2034 | "adultMinAge": 16.0, | ||
| 2035 | "cancellationPolicyDescription": "Cancellation Policy: 3 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 2036 | "cancellationPolicy": { | ||
| 2037 | "noShowChargeValue": 100.0, | ||
| 2038 | "noShowChargeValueType": "%", | ||
| 2039 | "earlyDepartureChargeValue": 100.0, | ||
| 2040 | "earlyDepartureChargeValueType": "%", | ||
| 2041 | "conditions": [ | ||
| 2042 | { | ||
| 2043 | "timeunits": 3, | ||
| 2044 | "timeunitType": "Day", | ||
| 2045 | "timeOffsetTypeName": "Before Arrival", | ||
| 2046 | "chargeValue": 1.0, | ||
| 2047 | "chargeValueType": "Night" | ||
| 2048 | } | ||
| 2049 | ] | ||
| 2050 | } | ||
| 2051 | }, | ||
| 2052 | "flight": { | ||
| 2053 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 2054 | "departureDate": "2024-09-07T00:00:00", | ||
| 2055 | "returnDate": "2024-09-14T00:00:00", | ||
| 2056 | "departureTicketsLeft": 24, | ||
| 2057 | "returnTicketsLeft": 17, | ||
| 2058 | "departureAvailabilityType": "FreeSale", | ||
| 2059 | "returnAvailabilityType": "FreeSale", | ||
| 2060 | "isTwoWay": true, | ||
| 2061 | "sameBaggageForAll": false, | ||
| 2062 | "totalBaggage": false, | ||
| 2063 | "isBlock": true, | ||
| 2064 | "class": "Economy", | ||
| 2065 | "departureSegments": [ | ||
| 2066 | { | ||
| 2067 | "airlineCode": "FZ", | ||
| 2068 | "airlineName": "Fly Dubai", | ||
| 2069 | "flightCode": "FZ1722", | ||
| 2070 | "class": "Economy", | ||
| 2071 | "lugageWeight": 20, | ||
| 2072 | "handLugageWeight": 6, | ||
| 2073 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 2074 | "departureCountryName": "Kazakhstan", | ||
| 2075 | "departureCityName": "Almaty", | ||
| 2076 | "departureAirportCode": "ALA", | ||
| 2077 | "departureAirportName": "Almaty Intl Airport", | ||
| 2078 | "departureTerminalCode": "ALA", | ||
| 2079 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 2080 | "arrivalCountryName": "United Arab Emirates", | ||
| 2081 | "arrivalCityName": "Dubai", | ||
| 2082 | "arrivalAirportCode": "DXB", | ||
| 2083 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 2084 | "arrivalTerminalCode": "DXB3", | ||
| 2085 | "flightDuration": "5h 35m" | ||
| 2086 | } | ||
| 2087 | ], | ||
| 2088 | "returnSegments": [ | ||
| 2089 | { | ||
| 2090 | "airlineCode": "FZ", | ||
| 2091 | "airlineName": "Fly Dubai", | ||
| 2092 | "flightCode": "FZ1721", | ||
| 2093 | "class": "Economy", | ||
| 2094 | "lugageWeight": 20, | ||
| 2095 | "handLugageWeight": 6, | ||
| 2096 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 2097 | "departureCountryName": "United Arab Emirates", | ||
| 2098 | "departureCityName": "Dubai", | ||
| 2099 | "departureAirportCode": "DXB", | ||
| 2100 | "departureAirportName": "Dubai Intl Airport", | ||
| 2101 | "departureTerminalCode": "DXB3", | ||
| 2102 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 2103 | "arrivalCountryName": "Kazakhstan", | ||
| 2104 | "arrivalCityName": "Almaty", | ||
| 2105 | "arrivalAirportCode": "ALA", | ||
| 2106 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 2107 | "arrivalTerminalCode": "ALA", | ||
| 2108 | "flightDuration": "3h 10m" | ||
| 2109 | } | ||
| 2110 | ], | ||
| 2111 | "passengers": [ | ||
| 2112 | { | ||
| 2113 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 2114 | "isAdult": true, | ||
| 2115 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 2116 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 2117 | "forwardBaggages": [ | ||
| 2118 | { | ||
| 2119 | "baggageCode": "INCLUDED", | ||
| 2120 | "description": "20 Kg Included", | ||
| 2121 | "price": 0.0, | ||
| 2122 | "currency": "USD", | ||
| 2123 | "included": true | ||
| 2124 | } | ||
| 2125 | ], | ||
| 2126 | "backwardBaggages": [ | ||
| 2127 | { | ||
| 2128 | "baggageCode": "INCLUDED", | ||
| 2129 | "description": "20 Kg Included", | ||
| 2130 | "price": 0.0, | ||
| 2131 | "currency": "USD", | ||
| 2132 | "included": true | ||
| 2133 | } | ||
| 2134 | ] | ||
| 2135 | }, | ||
| 2136 | { | ||
| 2137 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 2138 | "isAdult": true, | ||
| 2139 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 2140 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 2141 | "forwardBaggages": [ | ||
| 2142 | { | ||
| 2143 | "baggageCode": "INCLUDED", | ||
| 2144 | "description": "20 Kg Included", | ||
| 2145 | "price": 0.0, | ||
| 2146 | "currency": "USD", | ||
| 2147 | "included": true | ||
| 2148 | } | ||
| 2149 | ], | ||
| 2150 | "backwardBaggages": [ | ||
| 2151 | { | ||
| 2152 | "baggageCode": "INCLUDED", | ||
| 2153 | "description": "20 Kg Included", | ||
| 2154 | "price": 0.0, | ||
| 2155 | "currency": "USD", | ||
| 2156 | "included": true | ||
| 2157 | } | ||
| 2158 | ] | ||
| 2159 | } | ||
| 2160 | ] | ||
| 2161 | }, | ||
| 2162 | "extraServices": [], | ||
| 2163 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:5", | ||
| 2164 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 2165 | "sortAirline": "fly dubai", | ||
| 2166 | "sortHotelName": "le meridien al aqah beach resort", | ||
| 2167 | "sortDetails": "bb", | ||
| 2168 | "sortPlacement": "deluxe guest room dbl", | ||
| 2169 | "subList": [], | ||
| 2170 | "exchangeRate": 480.0 | ||
| 2171 | }, | ||
| 2172 | { | ||
| 2173 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:fb824f96-2de4-4b36-a9dc-c71633ec9d89:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 2174 | "priceCurrency": "USD", | ||
| 2175 | "totalPrice": 1588.57, | ||
| 2176 | "agentCommissionPercent": 9.0, | ||
| 2177 | "agentCommissionAmount": 142.97, | ||
| 2178 | "includedExtrasAmount": 0, | ||
| 2179 | "priceDifference": 0, | ||
| 2180 | "hotel": { | ||
| 2181 | "hotelPriceId": "fb824f96-2de4-4b36-a9dc-c71633ec9d89", | ||
| 2182 | "hotelName": "Le Meridien Al Aqah Beach Resort", | ||
| 2183 | "hotelCode": "63300069-0631-4c34-946e-d2ca9753ff6e", | ||
| 2184 | "nights": 7, | ||
| 2185 | "mealPlan": "BB", | ||
| 2186 | "hotelClass": "5", | ||
| 2187 | "hotelColor": "#000000", | ||
| 2188 | "availabilityType": "FreeSale", | ||
| 2189 | "availableRoomsCount": 0, | ||
| 2190 | "fewRooms": true, | ||
| 2191 | "roomCategoryCode": "04b0d2ba-b3b1-4858-a5c5-251279680430", | ||
| 2192 | "roomCategoryName": "Deluxe Guest Room with Balcony", | ||
| 2193 | "placementTypeName": "DBL", | ||
| 2194 | "checkInDate": "2024-09-07T00:00:00", | ||
| 2195 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 2196 | "adults": 2, | ||
| 2197 | "children": 0, | ||
| 2198 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 2199 | "districtName": "Al Aqah", | ||
| 2200 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 2201 | "cityName": "Fujairah", | ||
| 2202 | "countryCode": "AE", | ||
| 2203 | "countryName": "United Arab Emirates", | ||
| 2204 | "hasAlcohol": true, | ||
| 2205 | "hasFreeWifi": true, | ||
| 2206 | "hasMetro": false, | ||
| 2207 | "hasPool": true, | ||
| 2208 | "hasMall": false, | ||
| 2209 | "infantMaxAge": 1.99, | ||
| 2210 | "childMinAge": 2.0, | ||
| 2211 | "childMaxAge": 11.99, | ||
| 2212 | "teenMinAge": 12.0, | ||
| 2213 | "teenMaxAge": 15.99, | ||
| 2214 | "adultMinAge": 16.0, | ||
| 2215 | "cancellationPolicyDescription": "Cancellation Policy: 3 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 2216 | "cancellationPolicy": { | ||
| 2217 | "noShowChargeValue": 100.0, | ||
| 2218 | "noShowChargeValueType": "%", | ||
| 2219 | "earlyDepartureChargeValue": 100.0, | ||
| 2220 | "earlyDepartureChargeValueType": "%", | ||
| 2221 | "conditions": [ | ||
| 2222 | { | ||
| 2223 | "timeunits": 3, | ||
| 2224 | "timeunitType": "Day", | ||
| 2225 | "timeOffsetTypeName": "Before Arrival", | ||
| 2226 | "chargeValue": 1.0, | ||
| 2227 | "chargeValueType": "Night" | ||
| 2228 | } | ||
| 2229 | ] | ||
| 2230 | } | ||
| 2231 | }, | ||
| 2232 | "flight": { | ||
| 2233 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 2234 | "departureDate": "2024-09-07T00:00:00", | ||
| 2235 | "returnDate": "2024-09-14T00:00:00", | ||
| 2236 | "departureTicketsLeft": 24, | ||
| 2237 | "returnTicketsLeft": 17, | ||
| 2238 | "departureAvailabilityType": "FreeSale", | ||
| 2239 | "returnAvailabilityType": "FreeSale", | ||
| 2240 | "isTwoWay": true, | ||
| 2241 | "sameBaggageForAll": false, | ||
| 2242 | "totalBaggage": false, | ||
| 2243 | "isBlock": true, | ||
| 2244 | "class": "Economy", | ||
| 2245 | "departureSegments": [ | ||
| 2246 | { | ||
| 2247 | "airlineCode": "FZ", | ||
| 2248 | "airlineName": "Fly Dubai", | ||
| 2249 | "flightCode": "FZ1722", | ||
| 2250 | "class": "Economy", | ||
| 2251 | "lugageWeight": 20, | ||
| 2252 | "handLugageWeight": 6, | ||
| 2253 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 2254 | "departureCountryName": "Kazakhstan", | ||
| 2255 | "departureCityName": "Almaty", | ||
| 2256 | "departureAirportCode": "ALA", | ||
| 2257 | "departureAirportName": "Almaty Intl Airport", | ||
| 2258 | "departureTerminalCode": "ALA", | ||
| 2259 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 2260 | "arrivalCountryName": "United Arab Emirates", | ||
| 2261 | "arrivalCityName": "Dubai", | ||
| 2262 | "arrivalAirportCode": "DXB", | ||
| 2263 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 2264 | "arrivalTerminalCode": "DXB3", | ||
| 2265 | "flightDuration": "5h 35m" | ||
| 2266 | } | ||
| 2267 | ], | ||
| 2268 | "returnSegments": [ | ||
| 2269 | { | ||
| 2270 | "airlineCode": "FZ", | ||
| 2271 | "airlineName": "Fly Dubai", | ||
| 2272 | "flightCode": "FZ1721", | ||
| 2273 | "class": "Economy", | ||
| 2274 | "lugageWeight": 20, | ||
| 2275 | "handLugageWeight": 6, | ||
| 2276 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 2277 | "departureCountryName": "United Arab Emirates", | ||
| 2278 | "departureCityName": "Dubai", | ||
| 2279 | "departureAirportCode": "DXB", | ||
| 2280 | "departureAirportName": "Dubai Intl Airport", | ||
| 2281 | "departureTerminalCode": "DXB3", | ||
| 2282 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 2283 | "arrivalCountryName": "Kazakhstan", | ||
| 2284 | "arrivalCityName": "Almaty", | ||
| 2285 | "arrivalAirportCode": "ALA", | ||
| 2286 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 2287 | "arrivalTerminalCode": "ALA", | ||
| 2288 | "flightDuration": "3h 10m" | ||
| 2289 | } | ||
| 2290 | ], | ||
| 2291 | "passengers": [ | ||
| 2292 | { | ||
| 2293 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 2294 | "isAdult": true, | ||
| 2295 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 2296 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 2297 | "forwardBaggages": [ | ||
| 2298 | { | ||
| 2299 | "baggageCode": "INCLUDED", | ||
| 2300 | "description": "20 Kg Included", | ||
| 2301 | "price": 0.0, | ||
| 2302 | "currency": "USD", | ||
| 2303 | "included": true | ||
| 2304 | } | ||
| 2305 | ], | ||
| 2306 | "backwardBaggages": [ | ||
| 2307 | { | ||
| 2308 | "baggageCode": "INCLUDED", | ||
| 2309 | "description": "20 Kg Included", | ||
| 2310 | "price": 0.0, | ||
| 2311 | "currency": "USD", | ||
| 2312 | "included": true | ||
| 2313 | } | ||
| 2314 | ] | ||
| 2315 | }, | ||
| 2316 | { | ||
| 2317 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 2318 | "isAdult": true, | ||
| 2319 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 2320 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 2321 | "forwardBaggages": [ | ||
| 2322 | { | ||
| 2323 | "baggageCode": "INCLUDED", | ||
| 2324 | "description": "20 Kg Included", | ||
| 2325 | "price": 0.0, | ||
| 2326 | "currency": "USD", | ||
| 2327 | "included": true | ||
| 2328 | } | ||
| 2329 | ], | ||
| 2330 | "backwardBaggages": [ | ||
| 2331 | { | ||
| 2332 | "baggageCode": "INCLUDED", | ||
| 2333 | "description": "20 Kg Included", | ||
| 2334 | "price": 0.0, | ||
| 2335 | "currency": "USD", | ||
| 2336 | "included": true | ||
| 2337 | } | ||
| 2338 | ] | ||
| 2339 | } | ||
| 2340 | ] | ||
| 2341 | }, | ||
| 2342 | "extraServices": [], | ||
| 2343 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:6", | ||
| 2344 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 2345 | "sortAirline": "fly dubai", | ||
| 2346 | "sortHotelName": "le meridien al aqah beach resort", | ||
| 2347 | "sortDetails": "bb", | ||
| 2348 | "sortPlacement": "deluxe guest room with balcony dbl", | ||
| 2349 | "subList": [], | ||
| 2350 | "exchangeRate": 480.0 | ||
| 2351 | }, | ||
| 2352 | { | ||
| 2353 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:959cff0a-2a1b-4acc-ad05-661f2aad3fad:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 2354 | "priceCurrency": "USD", | ||
| 2355 | "totalPrice": 1597.04, | ||
| 2356 | "agentCommissionPercent": 9.0, | ||
| 2357 | "agentCommissionAmount": 143.73, | ||
| 2358 | "includedExtrasAmount": 0, | ||
| 2359 | "priceDifference": 0, | ||
| 2360 | "hotel": { | ||
| 2361 | "hotelPriceId": "959cff0a-2a1b-4acc-ad05-661f2aad3fad", | ||
| 2362 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 2363 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 2364 | "nights": 7, | ||
| 2365 | "mealPlan": "BB", | ||
| 2366 | "hotelClass": "5", | ||
| 2367 | "hotelColor": "#000000", | ||
| 2368 | "availabilityType": "FreeSale", | ||
| 2369 | "availableRoomsCount": 0, | ||
| 2370 | "fewRooms": true, | ||
| 2371 | "roomCategoryCode": "b84c625b-c941-48d9-93c9-f2e87e1ce099", | ||
| 2372 | "roomCategoryName": "Ocean View Room Twin", | ||
| 2373 | "placementTypeName": "DBL", | ||
| 2374 | "checkInDate": "2024-09-07T00:00:00", | ||
| 2375 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 2376 | "adults": 2, | ||
| 2377 | "children": 0, | ||
| 2378 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 2379 | "districtName": "Al Aqah", | ||
| 2380 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 2381 | "cityName": "Fujairah", | ||
| 2382 | "countryCode": "AE", | ||
| 2383 | "countryName": "United Arab Emirates", | ||
| 2384 | "hasAlcohol": true, | ||
| 2385 | "hasFreeWifi": true, | ||
| 2386 | "hasMetro": false, | ||
| 2387 | "hasPool": true, | ||
| 2388 | "hasMall": false, | ||
| 2389 | "infantMaxAge": 1.99, | ||
| 2390 | "childMinAge": 2.0, | ||
| 2391 | "childMaxAge": 11.99, | ||
| 2392 | "teenMinAge": 0.0, | ||
| 2393 | "teenMaxAge": 0.0, | ||
| 2394 | "adultMinAge": 12.0, | ||
| 2395 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 2396 | "cancellationPolicy": { | ||
| 2397 | "noShowChargeValue": 100.0, | ||
| 2398 | "noShowChargeValueType": "%", | ||
| 2399 | "earlyDepartureChargeValue": 100.0, | ||
| 2400 | "earlyDepartureChargeValueType": "%", | ||
| 2401 | "conditions": [ | ||
| 2402 | { | ||
| 2403 | "timeunits": 4, | ||
| 2404 | "timeunitType": "Day", | ||
| 2405 | "timeOffsetTypeName": "Before Arrival", | ||
| 2406 | "chargeValue": 100.0, | ||
| 2407 | "chargeValueType": "%" | ||
| 2408 | } | ||
| 2409 | ] | ||
| 2410 | } | ||
| 2411 | }, | ||
| 2412 | "flight": { | ||
| 2413 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 2414 | "departureDate": "2024-09-07T00:00:00", | ||
| 2415 | "returnDate": "2024-09-14T00:00:00", | ||
| 2416 | "departureTicketsLeft": 24, | ||
| 2417 | "returnTicketsLeft": 17, | ||
| 2418 | "departureAvailabilityType": "FreeSale", | ||
| 2419 | "returnAvailabilityType": "FreeSale", | ||
| 2420 | "isTwoWay": true, | ||
| 2421 | "sameBaggageForAll": false, | ||
| 2422 | "totalBaggage": false, | ||
| 2423 | "isBlock": true, | ||
| 2424 | "class": "Economy", | ||
| 2425 | "departureSegments": [ | ||
| 2426 | { | ||
| 2427 | "airlineCode": "FZ", | ||
| 2428 | "airlineName": "Fly Dubai", | ||
| 2429 | "flightCode": "FZ1722", | ||
| 2430 | "class": "Economy", | ||
| 2431 | "lugageWeight": 20, | ||
| 2432 | "handLugageWeight": 6, | ||
| 2433 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 2434 | "departureCountryName": "Kazakhstan", | ||
| 2435 | "departureCityName": "Almaty", | ||
| 2436 | "departureAirportCode": "ALA", | ||
| 2437 | "departureAirportName": "Almaty Intl Airport", | ||
| 2438 | "departureTerminalCode": "ALA", | ||
| 2439 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 2440 | "arrivalCountryName": "United Arab Emirates", | ||
| 2441 | "arrivalCityName": "Dubai", | ||
| 2442 | "arrivalAirportCode": "DXB", | ||
| 2443 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 2444 | "arrivalTerminalCode": "DXB3", | ||
| 2445 | "flightDuration": "5h 35m" | ||
| 2446 | } | ||
| 2447 | ], | ||
| 2448 | "returnSegments": [ | ||
| 2449 | { | ||
| 2450 | "airlineCode": "FZ", | ||
| 2451 | "airlineName": "Fly Dubai", | ||
| 2452 | "flightCode": "FZ1721", | ||
| 2453 | "class": "Economy", | ||
| 2454 | "lugageWeight": 20, | ||
| 2455 | "handLugageWeight": 6, | ||
| 2456 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 2457 | "departureCountryName": "United Arab Emirates", | ||
| 2458 | "departureCityName": "Dubai", | ||
| 2459 | "departureAirportCode": "DXB", | ||
| 2460 | "departureAirportName": "Dubai Intl Airport", | ||
| 2461 | "departureTerminalCode": "DXB3", | ||
| 2462 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 2463 | "arrivalCountryName": "Kazakhstan", | ||
| 2464 | "arrivalCityName": "Almaty", | ||
| 2465 | "arrivalAirportCode": "ALA", | ||
| 2466 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 2467 | "arrivalTerminalCode": "ALA", | ||
| 2468 | "flightDuration": "3h 10m" | ||
| 2469 | } | ||
| 2470 | ], | ||
| 2471 | "passengers": [ | ||
| 2472 | { | ||
| 2473 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 2474 | "isAdult": true, | ||
| 2475 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 2476 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 2477 | "forwardBaggages": [ | ||
| 2478 | { | ||
| 2479 | "baggageCode": "INCLUDED", | ||
| 2480 | "description": "20 Kg Included", | ||
| 2481 | "price": 0.0, | ||
| 2482 | "currency": "USD", | ||
| 2483 | "included": true | ||
| 2484 | } | ||
| 2485 | ], | ||
| 2486 | "backwardBaggages": [ | ||
| 2487 | { | ||
| 2488 | "baggageCode": "INCLUDED", | ||
| 2489 | "description": "20 Kg Included", | ||
| 2490 | "price": 0.0, | ||
| 2491 | "currency": "USD", | ||
| 2492 | "included": true | ||
| 2493 | } | ||
| 2494 | ] | ||
| 2495 | }, | ||
| 2496 | { | ||
| 2497 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 2498 | "isAdult": true, | ||
| 2499 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 2500 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 2501 | "forwardBaggages": [ | ||
| 2502 | { | ||
| 2503 | "baggageCode": "INCLUDED", | ||
| 2504 | "description": "20 Kg Included", | ||
| 2505 | "price": 0.0, | ||
| 2506 | "currency": "USD", | ||
| 2507 | "included": true | ||
| 2508 | } | ||
| 2509 | ], | ||
| 2510 | "backwardBaggages": [ | ||
| 2511 | { | ||
| 2512 | "baggageCode": "INCLUDED", | ||
| 2513 | "description": "20 Kg Included", | ||
| 2514 | "price": 0.0, | ||
| 2515 | "currency": "USD", | ||
| 2516 | "included": true | ||
| 2517 | } | ||
| 2518 | ] | ||
| 2519 | } | ||
| 2520 | ] | ||
| 2521 | }, | ||
| 2522 | "extraServices": [], | ||
| 2523 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:7", | ||
| 2524 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 2525 | "sortAirline": "fly dubai", | ||
| 2526 | "sortHotelName": "fujairah rotana resort spa", | ||
| 2527 | "sortDetails": "bb", | ||
| 2528 | "sortPlacement": "ocean view room twin dbl", | ||
| 2529 | "subList": [], | ||
| 2530 | "exchangeRate": 480.0 | ||
| 2531 | }, | ||
| 2532 | { | ||
| 2533 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:7bfa40fa-6a67-4ab5-998f-a59e3d669aef:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 2534 | "priceCurrency": "USD", | ||
| 2535 | "totalPrice": 1597.04, | ||
| 2536 | "agentCommissionPercent": 9.0, | ||
| 2537 | "agentCommissionAmount": 143.73, | ||
| 2538 | "includedExtrasAmount": 0, | ||
| 2539 | "priceDifference": 0, | ||
| 2540 | "hotel": { | ||
| 2541 | "hotelPriceId": "7bfa40fa-6a67-4ab5-998f-a59e3d669aef", | ||
| 2542 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 2543 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 2544 | "nights": 7, | ||
| 2545 | "mealPlan": "BB", | ||
| 2546 | "hotelClass": "5", | ||
| 2547 | "hotelColor": "#000000", | ||
| 2548 | "availabilityType": "OnRequest", | ||
| 2549 | "availableRoomsCount": 0, | ||
| 2550 | "fewRooms": true, | ||
| 2551 | "roomCategoryCode": "8a20d149-2bfc-4563-b43b-1b101410489f", | ||
| 2552 | "roomCategoryName": "Ocean View Room King", | ||
| 2553 | "placementTypeName": "DBL", | ||
| 2554 | "checkInDate": "2024-09-07T00:00:00", | ||
| 2555 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 2556 | "adults": 2, | ||
| 2557 | "children": 0, | ||
| 2558 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 2559 | "districtName": "Al Aqah", | ||
| 2560 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 2561 | "cityName": "Fujairah", | ||
| 2562 | "countryCode": "AE", | ||
| 2563 | "countryName": "United Arab Emirates", | ||
| 2564 | "hasAlcohol": true, | ||
| 2565 | "hasFreeWifi": true, | ||
| 2566 | "hasMetro": false, | ||
| 2567 | "hasPool": true, | ||
| 2568 | "hasMall": false, | ||
| 2569 | "infantMaxAge": 1.99, | ||
| 2570 | "childMinAge": 2.0, | ||
| 2571 | "childMaxAge": 11.99, | ||
| 2572 | "teenMinAge": 0.0, | ||
| 2573 | "teenMaxAge": 0.0, | ||
| 2574 | "adultMinAge": 12.0, | ||
| 2575 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 2576 | "cancellationPolicy": { | ||
| 2577 | "noShowChargeValue": 100.0, | ||
| 2578 | "noShowChargeValueType": "%", | ||
| 2579 | "earlyDepartureChargeValue": 100.0, | ||
| 2580 | "earlyDepartureChargeValueType": "%", | ||
| 2581 | "conditions": [ | ||
| 2582 | { | ||
| 2583 | "timeunits": 4, | ||
| 2584 | "timeunitType": "Day", | ||
| 2585 | "timeOffsetTypeName": "Before Arrival", | ||
| 2586 | "chargeValue": 100.0, | ||
| 2587 | "chargeValueType": "%" | ||
| 2588 | } | ||
| 2589 | ] | ||
| 2590 | } | ||
| 2591 | }, | ||
| 2592 | "flight": { | ||
| 2593 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 2594 | "departureDate": "2024-09-07T00:00:00", | ||
| 2595 | "returnDate": "2024-09-14T00:00:00", | ||
| 2596 | "departureTicketsLeft": 24, | ||
| 2597 | "returnTicketsLeft": 17, | ||
| 2598 | "departureAvailabilityType": "FreeSale", | ||
| 2599 | "returnAvailabilityType": "FreeSale", | ||
| 2600 | "isTwoWay": true, | ||
| 2601 | "sameBaggageForAll": false, | ||
| 2602 | "totalBaggage": false, | ||
| 2603 | "isBlock": true, | ||
| 2604 | "class": "Economy", | ||
| 2605 | "departureSegments": [ | ||
| 2606 | { | ||
| 2607 | "airlineCode": "FZ", | ||
| 2608 | "airlineName": "Fly Dubai", | ||
| 2609 | "flightCode": "FZ1722", | ||
| 2610 | "class": "Economy", | ||
| 2611 | "lugageWeight": 20, | ||
| 2612 | "handLugageWeight": 6, | ||
| 2613 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 2614 | "departureCountryName": "Kazakhstan", | ||
| 2615 | "departureCityName": "Almaty", | ||
| 2616 | "departureAirportCode": "ALA", | ||
| 2617 | "departureAirportName": "Almaty Intl Airport", | ||
| 2618 | "departureTerminalCode": "ALA", | ||
| 2619 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 2620 | "arrivalCountryName": "United Arab Emirates", | ||
| 2621 | "arrivalCityName": "Dubai", | ||
| 2622 | "arrivalAirportCode": "DXB", | ||
| 2623 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 2624 | "arrivalTerminalCode": "DXB3", | ||
| 2625 | "flightDuration": "5h 35m" | ||
| 2626 | } | ||
| 2627 | ], | ||
| 2628 | "returnSegments": [ | ||
| 2629 | { | ||
| 2630 | "airlineCode": "FZ", | ||
| 2631 | "airlineName": "Fly Dubai", | ||
| 2632 | "flightCode": "FZ1721", | ||
| 2633 | "class": "Economy", | ||
| 2634 | "lugageWeight": 20, | ||
| 2635 | "handLugageWeight": 6, | ||
| 2636 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 2637 | "departureCountryName": "United Arab Emirates", | ||
| 2638 | "departureCityName": "Dubai", | ||
| 2639 | "departureAirportCode": "DXB", | ||
| 2640 | "departureAirportName": "Dubai Intl Airport", | ||
| 2641 | "departureTerminalCode": "DXB3", | ||
| 2642 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 2643 | "arrivalCountryName": "Kazakhstan", | ||
| 2644 | "arrivalCityName": "Almaty", | ||
| 2645 | "arrivalAirportCode": "ALA", | ||
| 2646 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 2647 | "arrivalTerminalCode": "ALA", | ||
| 2648 | "flightDuration": "3h 10m" | ||
| 2649 | } | ||
| 2650 | ], | ||
| 2651 | "passengers": [ | ||
| 2652 | { | ||
| 2653 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 2654 | "isAdult": true, | ||
| 2655 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 2656 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 2657 | "forwardBaggages": [ | ||
| 2658 | { | ||
| 2659 | "baggageCode": "INCLUDED", | ||
| 2660 | "description": "20 Kg Included", | ||
| 2661 | "price": 0.0, | ||
| 2662 | "currency": "USD", | ||
| 2663 | "included": true | ||
| 2664 | } | ||
| 2665 | ], | ||
| 2666 | "backwardBaggages": [ | ||
| 2667 | { | ||
| 2668 | "baggageCode": "INCLUDED", | ||
| 2669 | "description": "20 Kg Included", | ||
| 2670 | "price": 0.0, | ||
| 2671 | "currency": "USD", | ||
| 2672 | "included": true | ||
| 2673 | } | ||
| 2674 | ] | ||
| 2675 | }, | ||
| 2676 | { | ||
| 2677 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 2678 | "isAdult": true, | ||
| 2679 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 2680 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 2681 | "forwardBaggages": [ | ||
| 2682 | { | ||
| 2683 | "baggageCode": "INCLUDED", | ||
| 2684 | "description": "20 Kg Included", | ||
| 2685 | "price": 0.0, | ||
| 2686 | "currency": "USD", | ||
| 2687 | "included": true | ||
| 2688 | } | ||
| 2689 | ], | ||
| 2690 | "backwardBaggages": [ | ||
| 2691 | { | ||
| 2692 | "baggageCode": "INCLUDED", | ||
| 2693 | "description": "20 Kg Included", | ||
| 2694 | "price": 0.0, | ||
| 2695 | "currency": "USD", | ||
| 2696 | "included": true | ||
| 2697 | } | ||
| 2698 | ] | ||
| 2699 | } | ||
| 2700 | ] | ||
| 2701 | }, | ||
| 2702 | "extraServices": [], | ||
| 2703 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:8", | ||
| 2704 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 2705 | "sortAirline": "fly dubai", | ||
| 2706 | "sortHotelName": "fujairah rotana resort spa", | ||
| 2707 | "sortDetails": "bb", | ||
| 2708 | "sortPlacement": "ocean view room king dbl", | ||
| 2709 | "subList": [], | ||
| 2710 | "exchangeRate": 480.0 | ||
| 2711 | }, | ||
| 2712 | { | ||
| 2713 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:d5469b2f-d5f1-405c-aa79-49f89630c270:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 2714 | "priceCurrency": "USD", | ||
| 2715 | "totalPrice": 1597.04, | ||
| 2716 | "agentCommissionPercent": 9.0, | ||
| 2717 | "agentCommissionAmount": 143.73, | ||
| 2718 | "includedExtrasAmount": 0, | ||
| 2719 | "priceDifference": 0, | ||
| 2720 | "hotel": { | ||
| 2721 | "hotelPriceId": "d5469b2f-d5f1-405c-aa79-49f89630c270", | ||
| 2722 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 2723 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 2724 | "nights": 7, | ||
| 2725 | "mealPlan": "BB", | ||
| 2726 | "hotelClass": "5", | ||
| 2727 | "hotelColor": "#000000", | ||
| 2728 | "availabilityType": "OnRequest", | ||
| 2729 | "availableRoomsCount": 0, | ||
| 2730 | "fewRooms": true, | ||
| 2731 | "roomCategoryCode": "8a20d149-2bfc-4563-b43b-1b101410489f", | ||
| 2732 | "roomCategoryName": "Ocean View Room King", | ||
| 2733 | "placementTypeName": "DBL", | ||
| 2734 | "checkInDate": "2024-09-07T00:00:00", | ||
| 2735 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 2736 | "adults": 2, | ||
| 2737 | "children": 0, | ||
| 2738 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 2739 | "districtName": "Al Aqah", | ||
| 2740 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 2741 | "cityName": "Fujairah", | ||
| 2742 | "countryCode": "AE", | ||
| 2743 | "countryName": "United Arab Emirates", | ||
| 2744 | "hasAlcohol": true, | ||
| 2745 | "hasFreeWifi": true, | ||
| 2746 | "hasMetro": false, | ||
| 2747 | "hasPool": true, | ||
| 2748 | "hasMall": false, | ||
| 2749 | "infantMaxAge": 1.99, | ||
| 2750 | "childMinAge": 2.0, | ||
| 2751 | "childMaxAge": 11.99, | ||
| 2752 | "teenMinAge": 0.0, | ||
| 2753 | "teenMaxAge": 0.0, | ||
| 2754 | "adultMinAge": 12.0, | ||
| 2755 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 2756 | "cancellationPolicy": { | ||
| 2757 | "noShowChargeValue": 100.0, | ||
| 2758 | "noShowChargeValueType": "%", | ||
| 2759 | "earlyDepartureChargeValue": 100.0, | ||
| 2760 | "earlyDepartureChargeValueType": "%", | ||
| 2761 | "conditions": [ | ||
| 2762 | { | ||
| 2763 | "timeunits": 4, | ||
| 2764 | "timeunitType": "Day", | ||
| 2765 | "timeOffsetTypeName": "Before Arrival", | ||
| 2766 | "chargeValue": 100.0, | ||
| 2767 | "chargeValueType": "%" | ||
| 2768 | } | ||
| 2769 | ] | ||
| 2770 | } | ||
| 2771 | }, | ||
| 2772 | "flight": { | ||
| 2773 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 2774 | "departureDate": "2024-09-07T00:00:00", | ||
| 2775 | "returnDate": "2024-09-14T00:00:00", | ||
| 2776 | "departureTicketsLeft": 24, | ||
| 2777 | "returnTicketsLeft": 17, | ||
| 2778 | "departureAvailabilityType": "FreeSale", | ||
| 2779 | "returnAvailabilityType": "FreeSale", | ||
| 2780 | "isTwoWay": true, | ||
| 2781 | "sameBaggageForAll": false, | ||
| 2782 | "totalBaggage": false, | ||
| 2783 | "isBlock": true, | ||
| 2784 | "class": "Economy", | ||
| 2785 | "departureSegments": [ | ||
| 2786 | { | ||
| 2787 | "airlineCode": "FZ", | ||
| 2788 | "airlineName": "Fly Dubai", | ||
| 2789 | "flightCode": "FZ1722", | ||
| 2790 | "class": "Economy", | ||
| 2791 | "lugageWeight": 20, | ||
| 2792 | "handLugageWeight": 6, | ||
| 2793 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 2794 | "departureCountryName": "Kazakhstan", | ||
| 2795 | "departureCityName": "Almaty", | ||
| 2796 | "departureAirportCode": "ALA", | ||
| 2797 | "departureAirportName": "Almaty Intl Airport", | ||
| 2798 | "departureTerminalCode": "ALA", | ||
| 2799 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 2800 | "arrivalCountryName": "United Arab Emirates", | ||
| 2801 | "arrivalCityName": "Dubai", | ||
| 2802 | "arrivalAirportCode": "DXB", | ||
| 2803 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 2804 | "arrivalTerminalCode": "DXB3", | ||
| 2805 | "flightDuration": "5h 35m" | ||
| 2806 | } | ||
| 2807 | ], | ||
| 2808 | "returnSegments": [ | ||
| 2809 | { | ||
| 2810 | "airlineCode": "FZ", | ||
| 2811 | "airlineName": "Fly Dubai", | ||
| 2812 | "flightCode": "FZ1721", | ||
| 2813 | "class": "Economy", | ||
| 2814 | "lugageWeight": 20, | ||
| 2815 | "handLugageWeight": 6, | ||
| 2816 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 2817 | "departureCountryName": "United Arab Emirates", | ||
| 2818 | "departureCityName": "Dubai", | ||
| 2819 | "departureAirportCode": "DXB", | ||
| 2820 | "departureAirportName": "Dubai Intl Airport", | ||
| 2821 | "departureTerminalCode": "DXB3", | ||
| 2822 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 2823 | "arrivalCountryName": "Kazakhstan", | ||
| 2824 | "arrivalCityName": "Almaty", | ||
| 2825 | "arrivalAirportCode": "ALA", | ||
| 2826 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 2827 | "arrivalTerminalCode": "ALA", | ||
| 2828 | "flightDuration": "3h 10m" | ||
| 2829 | } | ||
| 2830 | ], | ||
| 2831 | "passengers": [ | ||
| 2832 | { | ||
| 2833 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 2834 | "isAdult": true, | ||
| 2835 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 2836 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 2837 | "forwardBaggages": [ | ||
| 2838 | { | ||
| 2839 | "baggageCode": "INCLUDED", | ||
| 2840 | "description": "20 Kg Included", | ||
| 2841 | "price": 0.0, | ||
| 2842 | "currency": "USD", | ||
| 2843 | "included": true | ||
| 2844 | } | ||
| 2845 | ], | ||
| 2846 | "backwardBaggages": [ | ||
| 2847 | { | ||
| 2848 | "baggageCode": "INCLUDED", | ||
| 2849 | "description": "20 Kg Included", | ||
| 2850 | "price": 0.0, | ||
| 2851 | "currency": "USD", | ||
| 2852 | "included": true | ||
| 2853 | } | ||
| 2854 | ] | ||
| 2855 | }, | ||
| 2856 | { | ||
| 2857 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 2858 | "isAdult": true, | ||
| 2859 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 2860 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 2861 | "forwardBaggages": [ | ||
| 2862 | { | ||
| 2863 | "baggageCode": "INCLUDED", | ||
| 2864 | "description": "20 Kg Included", | ||
| 2865 | "price": 0.0, | ||
| 2866 | "currency": "USD", | ||
| 2867 | "included": true | ||
| 2868 | } | ||
| 2869 | ], | ||
| 2870 | "backwardBaggages": [ | ||
| 2871 | { | ||
| 2872 | "baggageCode": "INCLUDED", | ||
| 2873 | "description": "20 Kg Included", | ||
| 2874 | "price": 0.0, | ||
| 2875 | "currency": "USD", | ||
| 2876 | "included": true | ||
| 2877 | } | ||
| 2878 | ] | ||
| 2879 | } | ||
| 2880 | ] | ||
| 2881 | }, | ||
| 2882 | "extraServices": [], | ||
| 2883 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:9", | ||
| 2884 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 2885 | "sortAirline": "fly dubai", | ||
| 2886 | "sortHotelName": "fujairah rotana resort spa", | ||
| 2887 | "sortDetails": "bb", | ||
| 2888 | "sortPlacement": "ocean view room king dbl", | ||
| 2889 | "subList": [], | ||
| 2890 | "exchangeRate": 480.0 | ||
| 2891 | }, | ||
| 2892 | { | ||
| 2893 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:6b9bc85f-38e9-4096-b8cd-e36e7f5204f1:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 2894 | "priceCurrency": "USD", | ||
| 2895 | "totalPrice": 1597.04, | ||
| 2896 | "agentCommissionPercent": 9.0, | ||
| 2897 | "agentCommissionAmount": 143.73, | ||
| 2898 | "includedExtrasAmount": 0, | ||
| 2899 | "priceDifference": 0, | ||
| 2900 | "hotel": { | ||
| 2901 | "hotelPriceId": "6b9bc85f-38e9-4096-b8cd-e36e7f5204f1", | ||
| 2902 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 2903 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 2904 | "nights": 7, | ||
| 2905 | "mealPlan": "BB", | ||
| 2906 | "hotelClass": "5", | ||
| 2907 | "hotelColor": "#000000", | ||
| 2908 | "availabilityType": "FreeSale", | ||
| 2909 | "availableRoomsCount": 0, | ||
| 2910 | "fewRooms": true, | ||
| 2911 | "roomCategoryCode": "b84c625b-c941-48d9-93c9-f2e87e1ce099", | ||
| 2912 | "roomCategoryName": "Ocean View Room Twin", | ||
| 2913 | "placementTypeName": "DBL", | ||
| 2914 | "checkInDate": "2024-09-07T00:00:00", | ||
| 2915 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 2916 | "adults": 2, | ||
| 2917 | "children": 0, | ||
| 2918 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 2919 | "districtName": "Al Aqah", | ||
| 2920 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 2921 | "cityName": "Fujairah", | ||
| 2922 | "countryCode": "AE", | ||
| 2923 | "countryName": "United Arab Emirates", | ||
| 2924 | "hasAlcohol": true, | ||
| 2925 | "hasFreeWifi": true, | ||
| 2926 | "hasMetro": false, | ||
| 2927 | "hasPool": true, | ||
| 2928 | "hasMall": false, | ||
| 2929 | "infantMaxAge": 1.99, | ||
| 2930 | "childMinAge": 2.0, | ||
| 2931 | "childMaxAge": 11.99, | ||
| 2932 | "teenMinAge": 0.0, | ||
| 2933 | "teenMaxAge": 0.0, | ||
| 2934 | "adultMinAge": 12.0, | ||
| 2935 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 2936 | "cancellationPolicy": { | ||
| 2937 | "noShowChargeValue": 100.0, | ||
| 2938 | "noShowChargeValueType": "%", | ||
| 2939 | "earlyDepartureChargeValue": 100.0, | ||
| 2940 | "earlyDepartureChargeValueType": "%", | ||
| 2941 | "conditions": [ | ||
| 2942 | { | ||
| 2943 | "timeunits": 4, | ||
| 2944 | "timeunitType": "Day", | ||
| 2945 | "timeOffsetTypeName": "Before Arrival", | ||
| 2946 | "chargeValue": 100.0, | ||
| 2947 | "chargeValueType": "%" | ||
| 2948 | } | ||
| 2949 | ] | ||
| 2950 | } | ||
| 2951 | }, | ||
| 2952 | "flight": { | ||
| 2953 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 2954 | "departureDate": "2024-09-07T00:00:00", | ||
| 2955 | "returnDate": "2024-09-14T00:00:00", | ||
| 2956 | "departureTicketsLeft": 24, | ||
| 2957 | "returnTicketsLeft": 17, | ||
| 2958 | "departureAvailabilityType": "FreeSale", | ||
| 2959 | "returnAvailabilityType": "FreeSale", | ||
| 2960 | "isTwoWay": true, | ||
| 2961 | "sameBaggageForAll": false, | ||
| 2962 | "totalBaggage": false, | ||
| 2963 | "isBlock": true, | ||
| 2964 | "class": "Economy", | ||
| 2965 | "departureSegments": [ | ||
| 2966 | { | ||
| 2967 | "airlineCode": "FZ", | ||
| 2968 | "airlineName": "Fly Dubai", | ||
| 2969 | "flightCode": "FZ1722", | ||
| 2970 | "class": "Economy", | ||
| 2971 | "lugageWeight": 20, | ||
| 2972 | "handLugageWeight": 6, | ||
| 2973 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 2974 | "departureCountryName": "Kazakhstan", | ||
| 2975 | "departureCityName": "Almaty", | ||
| 2976 | "departureAirportCode": "ALA", | ||
| 2977 | "departureAirportName": "Almaty Intl Airport", | ||
| 2978 | "departureTerminalCode": "ALA", | ||
| 2979 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 2980 | "arrivalCountryName": "United Arab Emirates", | ||
| 2981 | "arrivalCityName": "Dubai", | ||
| 2982 | "arrivalAirportCode": "DXB", | ||
| 2983 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 2984 | "arrivalTerminalCode": "DXB3", | ||
| 2985 | "flightDuration": "5h 35m" | ||
| 2986 | } | ||
| 2987 | ], | ||
| 2988 | "returnSegments": [ | ||
| 2989 | { | ||
| 2990 | "airlineCode": "FZ", | ||
| 2991 | "airlineName": "Fly Dubai", | ||
| 2992 | "flightCode": "FZ1721", | ||
| 2993 | "class": "Economy", | ||
| 2994 | "lugageWeight": 20, | ||
| 2995 | "handLugageWeight": 6, | ||
| 2996 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 2997 | "departureCountryName": "United Arab Emirates", | ||
| 2998 | "departureCityName": "Dubai", | ||
| 2999 | "departureAirportCode": "DXB", | ||
| 3000 | "departureAirportName": "Dubai Intl Airport", | ||
| 3001 | "departureTerminalCode": "DXB3", | ||
| 3002 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 3003 | "arrivalCountryName": "Kazakhstan", | ||
| 3004 | "arrivalCityName": "Almaty", | ||
| 3005 | "arrivalAirportCode": "ALA", | ||
| 3006 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 3007 | "arrivalTerminalCode": "ALA", | ||
| 3008 | "flightDuration": "3h 10m" | ||
| 3009 | } | ||
| 3010 | ], | ||
| 3011 | "passengers": [ | ||
| 3012 | { | ||
| 3013 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 3014 | "isAdult": true, | ||
| 3015 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 3016 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 3017 | "forwardBaggages": [ | ||
| 3018 | { | ||
| 3019 | "baggageCode": "INCLUDED", | ||
| 3020 | "description": "20 Kg Included", | ||
| 3021 | "price": 0.0, | ||
| 3022 | "currency": "USD", | ||
| 3023 | "included": true | ||
| 3024 | } | ||
| 3025 | ], | ||
| 3026 | "backwardBaggages": [ | ||
| 3027 | { | ||
| 3028 | "baggageCode": "INCLUDED", | ||
| 3029 | "description": "20 Kg Included", | ||
| 3030 | "price": 0.0, | ||
| 3031 | "currency": "USD", | ||
| 3032 | "included": true | ||
| 3033 | } | ||
| 3034 | ] | ||
| 3035 | }, | ||
| 3036 | { | ||
| 3037 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 3038 | "isAdult": true, | ||
| 3039 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 3040 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 3041 | "forwardBaggages": [ | ||
| 3042 | { | ||
| 3043 | "baggageCode": "INCLUDED", | ||
| 3044 | "description": "20 Kg Included", | ||
| 3045 | "price": 0.0, | ||
| 3046 | "currency": "USD", | ||
| 3047 | "included": true | ||
| 3048 | } | ||
| 3049 | ], | ||
| 3050 | "backwardBaggages": [ | ||
| 3051 | { | ||
| 3052 | "baggageCode": "INCLUDED", | ||
| 3053 | "description": "20 Kg Included", | ||
| 3054 | "price": 0.0, | ||
| 3055 | "currency": "USD", | ||
| 3056 | "included": true | ||
| 3057 | } | ||
| 3058 | ] | ||
| 3059 | } | ||
| 3060 | ] | ||
| 3061 | }, | ||
| 3062 | "extraServices": [], | ||
| 3063 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:10", | ||
| 3064 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 3065 | "sortAirline": "fly dubai", | ||
| 3066 | "sortHotelName": "fujairah rotana resort spa", | ||
| 3067 | "sortDetails": "bb", | ||
| 3068 | "sortPlacement": "ocean view room twin dbl", | ||
| 3069 | "subList": [], | ||
| 3070 | "exchangeRate": 480.0 | ||
| 3071 | }, | ||
| 3072 | { | ||
| 3073 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:fc3edcab-fad9-41a7-a03a-095db2c323fd:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 3074 | "priceCurrency": "USD", | ||
| 3075 | "totalPrice": 1672.57, | ||
| 3076 | "agentCommissionPercent": 9.0, | ||
| 3077 | "agentCommissionAmount": 150.53, | ||
| 3078 | "includedExtrasAmount": 0, | ||
| 3079 | "priceDifference": 0, | ||
| 3080 | "hotel": { | ||
| 3081 | "hotelPriceId": "fc3edcab-fad9-41a7-a03a-095db2c323fd", | ||
| 3082 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 3083 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 3084 | "nights": 7, | ||
| 3085 | "mealPlan": "BB", | ||
| 3086 | "hotelClass": "5", | ||
| 3087 | "hotelColor": "#000000", | ||
| 3088 | "availabilityType": "FreeSale", | ||
| 3089 | "availableRoomsCount": 0, | ||
| 3090 | "fewRooms": true, | ||
| 3091 | "roomCategoryCode": "d544f59a-df57-4dc4-b1cd-b7263c02a5cc", | ||
| 3092 | "roomCategoryName": "Garden View Room Twin with Terrace", | ||
| 3093 | "placementTypeName": "DBL", | ||
| 3094 | "checkInDate": "2024-09-07T00:00:00", | ||
| 3095 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 3096 | "adults": 2, | ||
| 3097 | "children": 0, | ||
| 3098 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 3099 | "districtName": "Al Aqah", | ||
| 3100 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 3101 | "cityName": "Fujairah", | ||
| 3102 | "countryCode": "AE", | ||
| 3103 | "countryName": "United Arab Emirates", | ||
| 3104 | "hasAlcohol": true, | ||
| 3105 | "hasFreeWifi": true, | ||
| 3106 | "hasMetro": false, | ||
| 3107 | "hasPool": true, | ||
| 3108 | "hasMall": false, | ||
| 3109 | "infantMaxAge": 1.99, | ||
| 3110 | "childMinAge": 2.0, | ||
| 3111 | "childMaxAge": 11.99, | ||
| 3112 | "teenMinAge": 0.0, | ||
| 3113 | "teenMaxAge": 0.0, | ||
| 3114 | "adultMinAge": 12.0, | ||
| 3115 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 3116 | "cancellationPolicy": { | ||
| 3117 | "noShowChargeValue": 100.0, | ||
| 3118 | "noShowChargeValueType": "%", | ||
| 3119 | "earlyDepartureChargeValue": 100.0, | ||
| 3120 | "earlyDepartureChargeValueType": "%", | ||
| 3121 | "conditions": [ | ||
| 3122 | { | ||
| 3123 | "timeunits": 4, | ||
| 3124 | "timeunitType": "Day", | ||
| 3125 | "timeOffsetTypeName": "Before Arrival", | ||
| 3126 | "chargeValue": 100.0, | ||
| 3127 | "chargeValueType": "%" | ||
| 3128 | } | ||
| 3129 | ] | ||
| 3130 | } | ||
| 3131 | }, | ||
| 3132 | "flight": { | ||
| 3133 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 3134 | "departureDate": "2024-09-07T00:00:00", | ||
| 3135 | "returnDate": "2024-09-14T00:00:00", | ||
| 3136 | "departureTicketsLeft": 24, | ||
| 3137 | "returnTicketsLeft": 17, | ||
| 3138 | "departureAvailabilityType": "FreeSale", | ||
| 3139 | "returnAvailabilityType": "FreeSale", | ||
| 3140 | "isTwoWay": true, | ||
| 3141 | "sameBaggageForAll": false, | ||
| 3142 | "totalBaggage": false, | ||
| 3143 | "isBlock": true, | ||
| 3144 | "class": "Economy", | ||
| 3145 | "departureSegments": [ | ||
| 3146 | { | ||
| 3147 | "airlineCode": "FZ", | ||
| 3148 | "airlineName": "Fly Dubai", | ||
| 3149 | "flightCode": "FZ1722", | ||
| 3150 | "class": "Economy", | ||
| 3151 | "lugageWeight": 20, | ||
| 3152 | "handLugageWeight": 6, | ||
| 3153 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 3154 | "departureCountryName": "Kazakhstan", | ||
| 3155 | "departureCityName": "Almaty", | ||
| 3156 | "departureAirportCode": "ALA", | ||
| 3157 | "departureAirportName": "Almaty Intl Airport", | ||
| 3158 | "departureTerminalCode": "ALA", | ||
| 3159 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 3160 | "arrivalCountryName": "United Arab Emirates", | ||
| 3161 | "arrivalCityName": "Dubai", | ||
| 3162 | "arrivalAirportCode": "DXB", | ||
| 3163 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 3164 | "arrivalTerminalCode": "DXB3", | ||
| 3165 | "flightDuration": "5h 35m" | ||
| 3166 | } | ||
| 3167 | ], | ||
| 3168 | "returnSegments": [ | ||
| 3169 | { | ||
| 3170 | "airlineCode": "FZ", | ||
| 3171 | "airlineName": "Fly Dubai", | ||
| 3172 | "flightCode": "FZ1721", | ||
| 3173 | "class": "Economy", | ||
| 3174 | "lugageWeight": 20, | ||
| 3175 | "handLugageWeight": 6, | ||
| 3176 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 3177 | "departureCountryName": "United Arab Emirates", | ||
| 3178 | "departureCityName": "Dubai", | ||
| 3179 | "departureAirportCode": "DXB", | ||
| 3180 | "departureAirportName": "Dubai Intl Airport", | ||
| 3181 | "departureTerminalCode": "DXB3", | ||
| 3182 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 3183 | "arrivalCountryName": "Kazakhstan", | ||
| 3184 | "arrivalCityName": "Almaty", | ||
| 3185 | "arrivalAirportCode": "ALA", | ||
| 3186 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 3187 | "arrivalTerminalCode": "ALA", | ||
| 3188 | "flightDuration": "3h 10m" | ||
| 3189 | } | ||
| 3190 | ], | ||
| 3191 | "passengers": [ | ||
| 3192 | { | ||
| 3193 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 3194 | "isAdult": true, | ||
| 3195 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 3196 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 3197 | "forwardBaggages": [ | ||
| 3198 | { | ||
| 3199 | "baggageCode": "INCLUDED", | ||
| 3200 | "description": "20 Kg Included", | ||
| 3201 | "price": 0.0, | ||
| 3202 | "currency": "USD", | ||
| 3203 | "included": true | ||
| 3204 | } | ||
| 3205 | ], | ||
| 3206 | "backwardBaggages": [ | ||
| 3207 | { | ||
| 3208 | "baggageCode": "INCLUDED", | ||
| 3209 | "description": "20 Kg Included", | ||
| 3210 | "price": 0.0, | ||
| 3211 | "currency": "USD", | ||
| 3212 | "included": true | ||
| 3213 | } | ||
| 3214 | ] | ||
| 3215 | }, | ||
| 3216 | { | ||
| 3217 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 3218 | "isAdult": true, | ||
| 3219 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 3220 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 3221 | "forwardBaggages": [ | ||
| 3222 | { | ||
| 3223 | "baggageCode": "INCLUDED", | ||
| 3224 | "description": "20 Kg Included", | ||
| 3225 | "price": 0.0, | ||
| 3226 | "currency": "USD", | ||
| 3227 | "included": true | ||
| 3228 | } | ||
| 3229 | ], | ||
| 3230 | "backwardBaggages": [ | ||
| 3231 | { | ||
| 3232 | "baggageCode": "INCLUDED", | ||
| 3233 | "description": "20 Kg Included", | ||
| 3234 | "price": 0.0, | ||
| 3235 | "currency": "USD", | ||
| 3236 | "included": true | ||
| 3237 | } | ||
| 3238 | ] | ||
| 3239 | } | ||
| 3240 | ] | ||
| 3241 | }, | ||
| 3242 | "extraServices": [], | ||
| 3243 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:11", | ||
| 3244 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 3245 | "sortAirline": "fly dubai", | ||
| 3246 | "sortHotelName": "fujairah rotana resort spa", | ||
| 3247 | "sortDetails": "bb", | ||
| 3248 | "sortPlacement": "garden view room twin with terrace dbl", | ||
| 3249 | "subList": [], | ||
| 3250 | "exchangeRate": 480.0 | ||
| 3251 | }, | ||
| 3252 | { | ||
| 3253 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:07655d65-2000-45cd-b370-8abef039af1f:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 3254 | "priceCurrency": "USD", | ||
| 3255 | "totalPrice": 1672.57, | ||
| 3256 | "agentCommissionPercent": 9.0, | ||
| 3257 | "agentCommissionAmount": 150.53, | ||
| 3258 | "includedExtrasAmount": 0, | ||
| 3259 | "priceDifference": 0, | ||
| 3260 | "hotel": { | ||
| 3261 | "hotelPriceId": "07655d65-2000-45cd-b370-8abef039af1f", | ||
| 3262 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 3263 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 3264 | "nights": 7, | ||
| 3265 | "mealPlan": "BB", | ||
| 3266 | "hotelClass": "5", | ||
| 3267 | "hotelColor": "#000000", | ||
| 3268 | "availabilityType": "FreeSale", | ||
| 3269 | "availableRoomsCount": 0, | ||
| 3270 | "fewRooms": true, | ||
| 3271 | "roomCategoryCode": "65a0dc25-b738-4c5a-838c-2f3b30b6427e", | ||
| 3272 | "roomCategoryName": "Garden View Room King with Terrace", | ||
| 3273 | "placementTypeName": "DBL", | ||
| 3274 | "checkInDate": "2024-09-07T00:00:00", | ||
| 3275 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 3276 | "adults": 2, | ||
| 3277 | "children": 0, | ||
| 3278 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 3279 | "districtName": "Al Aqah", | ||
| 3280 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 3281 | "cityName": "Fujairah", | ||
| 3282 | "countryCode": "AE", | ||
| 3283 | "countryName": "United Arab Emirates", | ||
| 3284 | "hasAlcohol": true, | ||
| 3285 | "hasFreeWifi": true, | ||
| 3286 | "hasMetro": false, | ||
| 3287 | "hasPool": true, | ||
| 3288 | "hasMall": false, | ||
| 3289 | "infantMaxAge": 1.99, | ||
| 3290 | "childMinAge": 2.0, | ||
| 3291 | "childMaxAge": 11.99, | ||
| 3292 | "teenMinAge": 0.0, | ||
| 3293 | "teenMaxAge": 0.0, | ||
| 3294 | "adultMinAge": 12.0, | ||
| 3295 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 3296 | "cancellationPolicy": { | ||
| 3297 | "noShowChargeValue": 100.0, | ||
| 3298 | "noShowChargeValueType": "%", | ||
| 3299 | "earlyDepartureChargeValue": 100.0, | ||
| 3300 | "earlyDepartureChargeValueType": "%", | ||
| 3301 | "conditions": [ | ||
| 3302 | { | ||
| 3303 | "timeunits": 4, | ||
| 3304 | "timeunitType": "Day", | ||
| 3305 | "timeOffsetTypeName": "Before Arrival", | ||
| 3306 | "chargeValue": 100.0, | ||
| 3307 | "chargeValueType": "%" | ||
| 3308 | } | ||
| 3309 | ] | ||
| 3310 | } | ||
| 3311 | }, | ||
| 3312 | "flight": { | ||
| 3313 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 3314 | "departureDate": "2024-09-07T00:00:00", | ||
| 3315 | "returnDate": "2024-09-14T00:00:00", | ||
| 3316 | "departureTicketsLeft": 24, | ||
| 3317 | "returnTicketsLeft": 17, | ||
| 3318 | "departureAvailabilityType": "FreeSale", | ||
| 3319 | "returnAvailabilityType": "FreeSale", | ||
| 3320 | "isTwoWay": true, | ||
| 3321 | "sameBaggageForAll": false, | ||
| 3322 | "totalBaggage": false, | ||
| 3323 | "isBlock": true, | ||
| 3324 | "class": "Economy", | ||
| 3325 | "departureSegments": [ | ||
| 3326 | { | ||
| 3327 | "airlineCode": "FZ", | ||
| 3328 | "airlineName": "Fly Dubai", | ||
| 3329 | "flightCode": "FZ1722", | ||
| 3330 | "class": "Economy", | ||
| 3331 | "lugageWeight": 20, | ||
| 3332 | "handLugageWeight": 6, | ||
| 3333 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 3334 | "departureCountryName": "Kazakhstan", | ||
| 3335 | "departureCityName": "Almaty", | ||
| 3336 | "departureAirportCode": "ALA", | ||
| 3337 | "departureAirportName": "Almaty Intl Airport", | ||
| 3338 | "departureTerminalCode": "ALA", | ||
| 3339 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 3340 | "arrivalCountryName": "United Arab Emirates", | ||
| 3341 | "arrivalCityName": "Dubai", | ||
| 3342 | "arrivalAirportCode": "DXB", | ||
| 3343 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 3344 | "arrivalTerminalCode": "DXB3", | ||
| 3345 | "flightDuration": "5h 35m" | ||
| 3346 | } | ||
| 3347 | ], | ||
| 3348 | "returnSegments": [ | ||
| 3349 | { | ||
| 3350 | "airlineCode": "FZ", | ||
| 3351 | "airlineName": "Fly Dubai", | ||
| 3352 | "flightCode": "FZ1721", | ||
| 3353 | "class": "Economy", | ||
| 3354 | "lugageWeight": 20, | ||
| 3355 | "handLugageWeight": 6, | ||
| 3356 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 3357 | "departureCountryName": "United Arab Emirates", | ||
| 3358 | "departureCityName": "Dubai", | ||
| 3359 | "departureAirportCode": "DXB", | ||
| 3360 | "departureAirportName": "Dubai Intl Airport", | ||
| 3361 | "departureTerminalCode": "DXB3", | ||
| 3362 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 3363 | "arrivalCountryName": "Kazakhstan", | ||
| 3364 | "arrivalCityName": "Almaty", | ||
| 3365 | "arrivalAirportCode": "ALA", | ||
| 3366 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 3367 | "arrivalTerminalCode": "ALA", | ||
| 3368 | "flightDuration": "3h 10m" | ||
| 3369 | } | ||
| 3370 | ], | ||
| 3371 | "passengers": [ | ||
| 3372 | { | ||
| 3373 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 3374 | "isAdult": true, | ||
| 3375 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 3376 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 3377 | "forwardBaggages": [ | ||
| 3378 | { | ||
| 3379 | "baggageCode": "INCLUDED", | ||
| 3380 | "description": "20 Kg Included", | ||
| 3381 | "price": 0.0, | ||
| 3382 | "currency": "USD", | ||
| 3383 | "included": true | ||
| 3384 | } | ||
| 3385 | ], | ||
| 3386 | "backwardBaggages": [ | ||
| 3387 | { | ||
| 3388 | "baggageCode": "INCLUDED", | ||
| 3389 | "description": "20 Kg Included", | ||
| 3390 | "price": 0.0, | ||
| 3391 | "currency": "USD", | ||
| 3392 | "included": true | ||
| 3393 | } | ||
| 3394 | ] | ||
| 3395 | }, | ||
| 3396 | { | ||
| 3397 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 3398 | "isAdult": true, | ||
| 3399 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 3400 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 3401 | "forwardBaggages": [ | ||
| 3402 | { | ||
| 3403 | "baggageCode": "INCLUDED", | ||
| 3404 | "description": "20 Kg Included", | ||
| 3405 | "price": 0.0, | ||
| 3406 | "currency": "USD", | ||
| 3407 | "included": true | ||
| 3408 | } | ||
| 3409 | ], | ||
| 3410 | "backwardBaggages": [ | ||
| 3411 | { | ||
| 3412 | "baggageCode": "INCLUDED", | ||
| 3413 | "description": "20 Kg Included", | ||
| 3414 | "price": 0.0, | ||
| 3415 | "currency": "USD", | ||
| 3416 | "included": true | ||
| 3417 | } | ||
| 3418 | ] | ||
| 3419 | } | ||
| 3420 | ] | ||
| 3421 | }, | ||
| 3422 | "extraServices": [], | ||
| 3423 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:12", | ||
| 3424 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 3425 | "sortAirline": "fly dubai", | ||
| 3426 | "sortHotelName": "fujairah rotana resort spa", | ||
| 3427 | "sortDetails": "bb", | ||
| 3428 | "sortPlacement": "garden view room king with terrace dbl", | ||
| 3429 | "subList": [], | ||
| 3430 | "exchangeRate": 480.0 | ||
| 3431 | }, | ||
| 3432 | { | ||
| 3433 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:1aa18de2-a9f5-4fe6-83dd-67cf4a35690c:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 3434 | "priceCurrency": "USD", | ||
| 3435 | "totalPrice": 1672.57, | ||
| 3436 | "agentCommissionPercent": 9.0, | ||
| 3437 | "agentCommissionAmount": 150.53, | ||
| 3438 | "includedExtrasAmount": 0, | ||
| 3439 | "priceDifference": 0, | ||
| 3440 | "hotel": { | ||
| 3441 | "hotelPriceId": "1aa18de2-a9f5-4fe6-83dd-67cf4a35690c", | ||
| 3442 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 3443 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 3444 | "nights": 7, | ||
| 3445 | "mealPlan": "BB", | ||
| 3446 | "hotelClass": "5", | ||
| 3447 | "hotelColor": "#000000", | ||
| 3448 | "availabilityType": "FreeSale", | ||
| 3449 | "availableRoomsCount": 0, | ||
| 3450 | "fewRooms": true, | ||
| 3451 | "roomCategoryCode": "65a0dc25-b738-4c5a-838c-2f3b30b6427e", | ||
| 3452 | "roomCategoryName": "Garden View Room King with Terrace", | ||
| 3453 | "placementTypeName": "DBL", | ||
| 3454 | "checkInDate": "2024-09-07T00:00:00", | ||
| 3455 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 3456 | "adults": 2, | ||
| 3457 | "children": 0, | ||
| 3458 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 3459 | "districtName": "Al Aqah", | ||
| 3460 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 3461 | "cityName": "Fujairah", | ||
| 3462 | "countryCode": "AE", | ||
| 3463 | "countryName": "United Arab Emirates", | ||
| 3464 | "hasAlcohol": true, | ||
| 3465 | "hasFreeWifi": true, | ||
| 3466 | "hasMetro": false, | ||
| 3467 | "hasPool": true, | ||
| 3468 | "hasMall": false, | ||
| 3469 | "infantMaxAge": 1.99, | ||
| 3470 | "childMinAge": 2.0, | ||
| 3471 | "childMaxAge": 11.99, | ||
| 3472 | "teenMinAge": 0.0, | ||
| 3473 | "teenMaxAge": 0.0, | ||
| 3474 | "adultMinAge": 12.0, | ||
| 3475 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 3476 | "cancellationPolicy": { | ||
| 3477 | "noShowChargeValue": 100.0, | ||
| 3478 | "noShowChargeValueType": "%", | ||
| 3479 | "earlyDepartureChargeValue": 100.0, | ||
| 3480 | "earlyDepartureChargeValueType": "%", | ||
| 3481 | "conditions": [ | ||
| 3482 | { | ||
| 3483 | "timeunits": 4, | ||
| 3484 | "timeunitType": "Day", | ||
| 3485 | "timeOffsetTypeName": "Before Arrival", | ||
| 3486 | "chargeValue": 100.0, | ||
| 3487 | "chargeValueType": "%" | ||
| 3488 | } | ||
| 3489 | ] | ||
| 3490 | } | ||
| 3491 | }, | ||
| 3492 | "flight": { | ||
| 3493 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 3494 | "departureDate": "2024-09-07T00:00:00", | ||
| 3495 | "returnDate": "2024-09-14T00:00:00", | ||
| 3496 | "departureTicketsLeft": 24, | ||
| 3497 | "returnTicketsLeft": 17, | ||
| 3498 | "departureAvailabilityType": "FreeSale", | ||
| 3499 | "returnAvailabilityType": "FreeSale", | ||
| 3500 | "isTwoWay": true, | ||
| 3501 | "sameBaggageForAll": false, | ||
| 3502 | "totalBaggage": false, | ||
| 3503 | "isBlock": true, | ||
| 3504 | "class": "Economy", | ||
| 3505 | "departureSegments": [ | ||
| 3506 | { | ||
| 3507 | "airlineCode": "FZ", | ||
| 3508 | "airlineName": "Fly Dubai", | ||
| 3509 | "flightCode": "FZ1722", | ||
| 3510 | "class": "Economy", | ||
| 3511 | "lugageWeight": 20, | ||
| 3512 | "handLugageWeight": 6, | ||
| 3513 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 3514 | "departureCountryName": "Kazakhstan", | ||
| 3515 | "departureCityName": "Almaty", | ||
| 3516 | "departureAirportCode": "ALA", | ||
| 3517 | "departureAirportName": "Almaty Intl Airport", | ||
| 3518 | "departureTerminalCode": "ALA", | ||
| 3519 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 3520 | "arrivalCountryName": "United Arab Emirates", | ||
| 3521 | "arrivalCityName": "Dubai", | ||
| 3522 | "arrivalAirportCode": "DXB", | ||
| 3523 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 3524 | "arrivalTerminalCode": "DXB3", | ||
| 3525 | "flightDuration": "5h 35m" | ||
| 3526 | } | ||
| 3527 | ], | ||
| 3528 | "returnSegments": [ | ||
| 3529 | { | ||
| 3530 | "airlineCode": "FZ", | ||
| 3531 | "airlineName": "Fly Dubai", | ||
| 3532 | "flightCode": "FZ1721", | ||
| 3533 | "class": "Economy", | ||
| 3534 | "lugageWeight": 20, | ||
| 3535 | "handLugageWeight": 6, | ||
| 3536 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 3537 | "departureCountryName": "United Arab Emirates", | ||
| 3538 | "departureCityName": "Dubai", | ||
| 3539 | "departureAirportCode": "DXB", | ||
| 3540 | "departureAirportName": "Dubai Intl Airport", | ||
| 3541 | "departureTerminalCode": "DXB3", | ||
| 3542 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 3543 | "arrivalCountryName": "Kazakhstan", | ||
| 3544 | "arrivalCityName": "Almaty", | ||
| 3545 | "arrivalAirportCode": "ALA", | ||
| 3546 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 3547 | "arrivalTerminalCode": "ALA", | ||
| 3548 | "flightDuration": "3h 10m" | ||
| 3549 | } | ||
| 3550 | ], | ||
| 3551 | "passengers": [ | ||
| 3552 | { | ||
| 3553 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 3554 | "isAdult": true, | ||
| 3555 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 3556 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 3557 | "forwardBaggages": [ | ||
| 3558 | { | ||
| 3559 | "baggageCode": "INCLUDED", | ||
| 3560 | "description": "20 Kg Included", | ||
| 3561 | "price": 0.0, | ||
| 3562 | "currency": "USD", | ||
| 3563 | "included": true | ||
| 3564 | } | ||
| 3565 | ], | ||
| 3566 | "backwardBaggages": [ | ||
| 3567 | { | ||
| 3568 | "baggageCode": "INCLUDED", | ||
| 3569 | "description": "20 Kg Included", | ||
| 3570 | "price": 0.0, | ||
| 3571 | "currency": "USD", | ||
| 3572 | "included": true | ||
| 3573 | } | ||
| 3574 | ] | ||
| 3575 | }, | ||
| 3576 | { | ||
| 3577 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 3578 | "isAdult": true, | ||
| 3579 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 3580 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 3581 | "forwardBaggages": [ | ||
| 3582 | { | ||
| 3583 | "baggageCode": "INCLUDED", | ||
| 3584 | "description": "20 Kg Included", | ||
| 3585 | "price": 0.0, | ||
| 3586 | "currency": "USD", | ||
| 3587 | "included": true | ||
| 3588 | } | ||
| 3589 | ], | ||
| 3590 | "backwardBaggages": [ | ||
| 3591 | { | ||
| 3592 | "baggageCode": "INCLUDED", | ||
| 3593 | "description": "20 Kg Included", | ||
| 3594 | "price": 0.0, | ||
| 3595 | "currency": "USD", | ||
| 3596 | "included": true | ||
| 3597 | } | ||
| 3598 | ] | ||
| 3599 | } | ||
| 3600 | ] | ||
| 3601 | }, | ||
| 3602 | "extraServices": [], | ||
| 3603 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:13", | ||
| 3604 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 3605 | "sortAirline": "fly dubai", | ||
| 3606 | "sortHotelName": "fujairah rotana resort spa", | ||
| 3607 | "sortDetails": "bb", | ||
| 3608 | "sortPlacement": "garden view room king with terrace dbl", | ||
| 3609 | "subList": [], | ||
| 3610 | "exchangeRate": 480.0 | ||
| 3611 | }, | ||
| 3612 | { | ||
| 3613 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:828e9137-9b6d-4bde-96b6-fa81d41c455f:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 3614 | "priceCurrency": "USD", | ||
| 3615 | "totalPrice": 1672.57, | ||
| 3616 | "agentCommissionPercent": 9.0, | ||
| 3617 | "agentCommissionAmount": 150.53, | ||
| 3618 | "includedExtrasAmount": 0, | ||
| 3619 | "priceDifference": 0, | ||
| 3620 | "hotel": { | ||
| 3621 | "hotelPriceId": "828e9137-9b6d-4bde-96b6-fa81d41c455f", | ||
| 3622 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 3623 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 3624 | "nights": 7, | ||
| 3625 | "mealPlan": "BB", | ||
| 3626 | "hotelClass": "5", | ||
| 3627 | "hotelColor": "#000000", | ||
| 3628 | "availabilityType": "FreeSale", | ||
| 3629 | "availableRoomsCount": 0, | ||
| 3630 | "fewRooms": true, | ||
| 3631 | "roomCategoryCode": "d544f59a-df57-4dc4-b1cd-b7263c02a5cc", | ||
| 3632 | "roomCategoryName": "Garden View Room Twin with Terrace", | ||
| 3633 | "placementTypeName": "DBL", | ||
| 3634 | "checkInDate": "2024-09-07T00:00:00", | ||
| 3635 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 3636 | "adults": 2, | ||
| 3637 | "children": 0, | ||
| 3638 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 3639 | "districtName": "Al Aqah", | ||
| 3640 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 3641 | "cityName": "Fujairah", | ||
| 3642 | "countryCode": "AE", | ||
| 3643 | "countryName": "United Arab Emirates", | ||
| 3644 | "hasAlcohol": true, | ||
| 3645 | "hasFreeWifi": true, | ||
| 3646 | "hasMetro": false, | ||
| 3647 | "hasPool": true, | ||
| 3648 | "hasMall": false, | ||
| 3649 | "infantMaxAge": 1.99, | ||
| 3650 | "childMinAge": 2.0, | ||
| 3651 | "childMaxAge": 11.99, | ||
| 3652 | "teenMinAge": 0.0, | ||
| 3653 | "teenMaxAge": 0.0, | ||
| 3654 | "adultMinAge": 12.0, | ||
| 3655 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 3656 | "cancellationPolicy": { | ||
| 3657 | "noShowChargeValue": 100.0, | ||
| 3658 | "noShowChargeValueType": "%", | ||
| 3659 | "earlyDepartureChargeValue": 100.0, | ||
| 3660 | "earlyDepartureChargeValueType": "%", | ||
| 3661 | "conditions": [ | ||
| 3662 | { | ||
| 3663 | "timeunits": 4, | ||
| 3664 | "timeunitType": "Day", | ||
| 3665 | "timeOffsetTypeName": "Before Arrival", | ||
| 3666 | "chargeValue": 100.0, | ||
| 3667 | "chargeValueType": "%" | ||
| 3668 | } | ||
| 3669 | ] | ||
| 3670 | } | ||
| 3671 | }, | ||
| 3672 | "flight": { | ||
| 3673 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 3674 | "departureDate": "2024-09-07T00:00:00", | ||
| 3675 | "returnDate": "2024-09-14T00:00:00", | ||
| 3676 | "departureTicketsLeft": 24, | ||
| 3677 | "returnTicketsLeft": 17, | ||
| 3678 | "departureAvailabilityType": "FreeSale", | ||
| 3679 | "returnAvailabilityType": "FreeSale", | ||
| 3680 | "isTwoWay": true, | ||
| 3681 | "sameBaggageForAll": false, | ||
| 3682 | "totalBaggage": false, | ||
| 3683 | "isBlock": true, | ||
| 3684 | "class": "Economy", | ||
| 3685 | "departureSegments": [ | ||
| 3686 | { | ||
| 3687 | "airlineCode": "FZ", | ||
| 3688 | "airlineName": "Fly Dubai", | ||
| 3689 | "flightCode": "FZ1722", | ||
| 3690 | "class": "Economy", | ||
| 3691 | "lugageWeight": 20, | ||
| 3692 | "handLugageWeight": 6, | ||
| 3693 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 3694 | "departureCountryName": "Kazakhstan", | ||
| 3695 | "departureCityName": "Almaty", | ||
| 3696 | "departureAirportCode": "ALA", | ||
| 3697 | "departureAirportName": "Almaty Intl Airport", | ||
| 3698 | "departureTerminalCode": "ALA", | ||
| 3699 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 3700 | "arrivalCountryName": "United Arab Emirates", | ||
| 3701 | "arrivalCityName": "Dubai", | ||
| 3702 | "arrivalAirportCode": "DXB", | ||
| 3703 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 3704 | "arrivalTerminalCode": "DXB3", | ||
| 3705 | "flightDuration": "5h 35m" | ||
| 3706 | } | ||
| 3707 | ], | ||
| 3708 | "returnSegments": [ | ||
| 3709 | { | ||
| 3710 | "airlineCode": "FZ", | ||
| 3711 | "airlineName": "Fly Dubai", | ||
| 3712 | "flightCode": "FZ1721", | ||
| 3713 | "class": "Economy", | ||
| 3714 | "lugageWeight": 20, | ||
| 3715 | "handLugageWeight": 6, | ||
| 3716 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 3717 | "departureCountryName": "United Arab Emirates", | ||
| 3718 | "departureCityName": "Dubai", | ||
| 3719 | "departureAirportCode": "DXB", | ||
| 3720 | "departureAirportName": "Dubai Intl Airport", | ||
| 3721 | "departureTerminalCode": "DXB3", | ||
| 3722 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 3723 | "arrivalCountryName": "Kazakhstan", | ||
| 3724 | "arrivalCityName": "Almaty", | ||
| 3725 | "arrivalAirportCode": "ALA", | ||
| 3726 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 3727 | "arrivalTerminalCode": "ALA", | ||
| 3728 | "flightDuration": "3h 10m" | ||
| 3729 | } | ||
| 3730 | ], | ||
| 3731 | "passengers": [ | ||
| 3732 | { | ||
| 3733 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 3734 | "isAdult": true, | ||
| 3735 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 3736 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 3737 | "forwardBaggages": [ | ||
| 3738 | { | ||
| 3739 | "baggageCode": "INCLUDED", | ||
| 3740 | "description": "20 Kg Included", | ||
| 3741 | "price": 0.0, | ||
| 3742 | "currency": "USD", | ||
| 3743 | "included": true | ||
| 3744 | } | ||
| 3745 | ], | ||
| 3746 | "backwardBaggages": [ | ||
| 3747 | { | ||
| 3748 | "baggageCode": "INCLUDED", | ||
| 3749 | "description": "20 Kg Included", | ||
| 3750 | "price": 0.0, | ||
| 3751 | "currency": "USD", | ||
| 3752 | "included": true | ||
| 3753 | } | ||
| 3754 | ] | ||
| 3755 | }, | ||
| 3756 | { | ||
| 3757 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 3758 | "isAdult": true, | ||
| 3759 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 3760 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 3761 | "forwardBaggages": [ | ||
| 3762 | { | ||
| 3763 | "baggageCode": "INCLUDED", | ||
| 3764 | "description": "20 Kg Included", | ||
| 3765 | "price": 0.0, | ||
| 3766 | "currency": "USD", | ||
| 3767 | "included": true | ||
| 3768 | } | ||
| 3769 | ], | ||
| 3770 | "backwardBaggages": [ | ||
| 3771 | { | ||
| 3772 | "baggageCode": "INCLUDED", | ||
| 3773 | "description": "20 Kg Included", | ||
| 3774 | "price": 0.0, | ||
| 3775 | "currency": "USD", | ||
| 3776 | "included": true | ||
| 3777 | } | ||
| 3778 | ] | ||
| 3779 | } | ||
| 3780 | ] | ||
| 3781 | }, | ||
| 3782 | "extraServices": [], | ||
| 3783 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:14", | ||
| 3784 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 3785 | "sortAirline": "fly dubai", | ||
| 3786 | "sortHotelName": "fujairah rotana resort spa", | ||
| 3787 | "sortDetails": "bb", | ||
| 3788 | "sortPlacement": "garden view room twin with terrace dbl", | ||
| 3789 | "subList": [], | ||
| 3790 | "exchangeRate": 480.0 | ||
| 3791 | }, | ||
| 3792 | { | ||
| 3793 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:8b389dd6-3040-444a-8d21-c9d20a7718c5:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 3794 | "priceCurrency": "USD", | ||
| 3795 | "totalPrice": 1770.11, | ||
| 3796 | "agentCommissionPercent": 9.0, | ||
| 3797 | "agentCommissionAmount": 159.31, | ||
| 3798 | "includedExtrasAmount": 0, | ||
| 3799 | "priceDifference": 0, | ||
| 3800 | "hotel": { | ||
| 3801 | "hotelPriceId": "8b389dd6-3040-444a-8d21-c9d20a7718c5", | ||
| 3802 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 3803 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 3804 | "nights": 7, | ||
| 3805 | "mealPlan": "HB", | ||
| 3806 | "hotelClass": "5", | ||
| 3807 | "hotelColor": "#000000", | ||
| 3808 | "availabilityType": "FreeSale", | ||
| 3809 | "availableRoomsCount": 0, | ||
| 3810 | "fewRooms": true, | ||
| 3811 | "roomCategoryCode": "53bd7e89-2c04-4944-b706-be67857fc076", | ||
| 3812 | "roomCategoryName": "King Guest Room", | ||
| 3813 | "placementTypeName": "DBL", | ||
| 3814 | "checkInDate": "2024-09-07T00:00:00", | ||
| 3815 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 3816 | "adults": 2, | ||
| 3817 | "children": 0, | ||
| 3818 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 3819 | "districtName": "Al Aqah", | ||
| 3820 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 3821 | "cityName": "Fujairah", | ||
| 3822 | "countryCode": "AE", | ||
| 3823 | "countryName": "United Arab Emirates", | ||
| 3824 | "hasAlcohol": true, | ||
| 3825 | "hasFreeWifi": true, | ||
| 3826 | "hasMetro": false, | ||
| 3827 | "hasPool": true, | ||
| 3828 | "hasMall": false, | ||
| 3829 | "infantMaxAge": 1.99, | ||
| 3830 | "childMinAge": 2.0, | ||
| 3831 | "childMaxAge": 11.99, | ||
| 3832 | "teenMinAge": 0.0, | ||
| 3833 | "teenMaxAge": 0.0, | ||
| 3834 | "adultMinAge": 12.0, | ||
| 3835 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 3836 | "cancellationPolicy": { | ||
| 3837 | "noShowChargeValue": 100.0, | ||
| 3838 | "noShowChargeValueType": "%", | ||
| 3839 | "earlyDepartureChargeValue": 100.0, | ||
| 3840 | "earlyDepartureChargeValueType": "%", | ||
| 3841 | "conditions": [ | ||
| 3842 | { | ||
| 3843 | "timeunits": 4, | ||
| 3844 | "timeunitType": "Day", | ||
| 3845 | "timeOffsetTypeName": "Before Arrival", | ||
| 3846 | "chargeValue": 100.0, | ||
| 3847 | "chargeValueType": "%" | ||
| 3848 | } | ||
| 3849 | ] | ||
| 3850 | } | ||
| 3851 | }, | ||
| 3852 | "flight": { | ||
| 3853 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 3854 | "departureDate": "2024-09-07T00:00:00", | ||
| 3855 | "returnDate": "2024-09-14T00:00:00", | ||
| 3856 | "departureTicketsLeft": 24, | ||
| 3857 | "returnTicketsLeft": 17, | ||
| 3858 | "departureAvailabilityType": "FreeSale", | ||
| 3859 | "returnAvailabilityType": "FreeSale", | ||
| 3860 | "isTwoWay": true, | ||
| 3861 | "sameBaggageForAll": false, | ||
| 3862 | "totalBaggage": false, | ||
| 3863 | "isBlock": true, | ||
| 3864 | "class": "Economy", | ||
| 3865 | "departureSegments": [ | ||
| 3866 | { | ||
| 3867 | "airlineCode": "FZ", | ||
| 3868 | "airlineName": "Fly Dubai", | ||
| 3869 | "flightCode": "FZ1722", | ||
| 3870 | "class": "Economy", | ||
| 3871 | "lugageWeight": 20, | ||
| 3872 | "handLugageWeight": 6, | ||
| 3873 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 3874 | "departureCountryName": "Kazakhstan", | ||
| 3875 | "departureCityName": "Almaty", | ||
| 3876 | "departureAirportCode": "ALA", | ||
| 3877 | "departureAirportName": "Almaty Intl Airport", | ||
| 3878 | "departureTerminalCode": "ALA", | ||
| 3879 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 3880 | "arrivalCountryName": "United Arab Emirates", | ||
| 3881 | "arrivalCityName": "Dubai", | ||
| 3882 | "arrivalAirportCode": "DXB", | ||
| 3883 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 3884 | "arrivalTerminalCode": "DXB3", | ||
| 3885 | "flightDuration": "5h 35m" | ||
| 3886 | } | ||
| 3887 | ], | ||
| 3888 | "returnSegments": [ | ||
| 3889 | { | ||
| 3890 | "airlineCode": "FZ", | ||
| 3891 | "airlineName": "Fly Dubai", | ||
| 3892 | "flightCode": "FZ1721", | ||
| 3893 | "class": "Economy", | ||
| 3894 | "lugageWeight": 20, | ||
| 3895 | "handLugageWeight": 6, | ||
| 3896 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 3897 | "departureCountryName": "United Arab Emirates", | ||
| 3898 | "departureCityName": "Dubai", | ||
| 3899 | "departureAirportCode": "DXB", | ||
| 3900 | "departureAirportName": "Dubai Intl Airport", | ||
| 3901 | "departureTerminalCode": "DXB3", | ||
| 3902 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 3903 | "arrivalCountryName": "Kazakhstan", | ||
| 3904 | "arrivalCityName": "Almaty", | ||
| 3905 | "arrivalAirportCode": "ALA", | ||
| 3906 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 3907 | "arrivalTerminalCode": "ALA", | ||
| 3908 | "flightDuration": "3h 10m" | ||
| 3909 | } | ||
| 3910 | ], | ||
| 3911 | "passengers": [ | ||
| 3912 | { | ||
| 3913 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 3914 | "isAdult": true, | ||
| 3915 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 3916 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 3917 | "forwardBaggages": [ | ||
| 3918 | { | ||
| 3919 | "baggageCode": "INCLUDED", | ||
| 3920 | "description": "20 Kg Included", | ||
| 3921 | "price": 0.0, | ||
| 3922 | "currency": "USD", | ||
| 3923 | "included": true | ||
| 3924 | } | ||
| 3925 | ], | ||
| 3926 | "backwardBaggages": [ | ||
| 3927 | { | ||
| 3928 | "baggageCode": "INCLUDED", | ||
| 3929 | "description": "20 Kg Included", | ||
| 3930 | "price": 0.0, | ||
| 3931 | "currency": "USD", | ||
| 3932 | "included": true | ||
| 3933 | } | ||
| 3934 | ] | ||
| 3935 | }, | ||
| 3936 | { | ||
| 3937 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 3938 | "isAdult": true, | ||
| 3939 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 3940 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 3941 | "forwardBaggages": [ | ||
| 3942 | { | ||
| 3943 | "baggageCode": "INCLUDED", | ||
| 3944 | "description": "20 Kg Included", | ||
| 3945 | "price": 0.0, | ||
| 3946 | "currency": "USD", | ||
| 3947 | "included": true | ||
| 3948 | } | ||
| 3949 | ], | ||
| 3950 | "backwardBaggages": [ | ||
| 3951 | { | ||
| 3952 | "baggageCode": "INCLUDED", | ||
| 3953 | "description": "20 Kg Included", | ||
| 3954 | "price": 0.0, | ||
| 3955 | "currency": "USD", | ||
| 3956 | "included": true | ||
| 3957 | } | ||
| 3958 | ] | ||
| 3959 | } | ||
| 3960 | ] | ||
| 3961 | }, | ||
| 3962 | "extraServices": [], | ||
| 3963 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:15", | ||
| 3964 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 3965 | "sortAirline": "fly dubai", | ||
| 3966 | "sortHotelName": "fujairah rotana resort spa", | ||
| 3967 | "sortDetails": "hb", | ||
| 3968 | "sortPlacement": "king guest room dbl", | ||
| 3969 | "subList": [], | ||
| 3970 | "exchangeRate": 480.0 | ||
| 3971 | }, | ||
| 3972 | { | ||
| 3973 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:91a303cb-ca93-4408-8dc5-1d1134fa59e8:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 3974 | "priceCurrency": "USD", | ||
| 3975 | "totalPrice": 1770.11, | ||
| 3976 | "agentCommissionPercent": 9.0, | ||
| 3977 | "agentCommissionAmount": 159.31, | ||
| 3978 | "includedExtrasAmount": 0, | ||
| 3979 | "priceDifference": 0, | ||
| 3980 | "hotel": { | ||
| 3981 | "hotelPriceId": "91a303cb-ca93-4408-8dc5-1d1134fa59e8", | ||
| 3982 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 3983 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 3984 | "nights": 7, | ||
| 3985 | "mealPlan": "HB", | ||
| 3986 | "hotelClass": "5", | ||
| 3987 | "hotelColor": "#000000", | ||
| 3988 | "availabilityType": "FreeSale", | ||
| 3989 | "availableRoomsCount": 0, | ||
| 3990 | "fewRooms": true, | ||
| 3991 | "roomCategoryCode": "e6019a5a-760a-4cb1-9117-643ced101fb5", | ||
| 3992 | "roomCategoryName": "Twin Guest Room", | ||
| 3993 | "placementTypeName": "DBL", | ||
| 3994 | "checkInDate": "2024-09-07T00:00:00", | ||
| 3995 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 3996 | "adults": 2, | ||
| 3997 | "children": 0, | ||
| 3998 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 3999 | "districtName": "Al Aqah", | ||
| 4000 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 4001 | "cityName": "Fujairah", | ||
| 4002 | "countryCode": "AE", | ||
| 4003 | "countryName": "United Arab Emirates", | ||
| 4004 | "hasAlcohol": true, | ||
| 4005 | "hasFreeWifi": true, | ||
| 4006 | "hasMetro": false, | ||
| 4007 | "hasPool": true, | ||
| 4008 | "hasMall": false, | ||
| 4009 | "infantMaxAge": 1.99, | ||
| 4010 | "childMinAge": 2.0, | ||
| 4011 | "childMaxAge": 11.99, | ||
| 4012 | "teenMinAge": 0.0, | ||
| 4013 | "teenMaxAge": 0.0, | ||
| 4014 | "adultMinAge": 12.0, | ||
| 4015 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 4016 | "cancellationPolicy": { | ||
| 4017 | "noShowChargeValue": 100.0, | ||
| 4018 | "noShowChargeValueType": "%", | ||
| 4019 | "earlyDepartureChargeValue": 100.0, | ||
| 4020 | "earlyDepartureChargeValueType": "%", | ||
| 4021 | "conditions": [ | ||
| 4022 | { | ||
| 4023 | "timeunits": 4, | ||
| 4024 | "timeunitType": "Day", | ||
| 4025 | "timeOffsetTypeName": "Before Arrival", | ||
| 4026 | "chargeValue": 100.0, | ||
| 4027 | "chargeValueType": "%" | ||
| 4028 | } | ||
| 4029 | ] | ||
| 4030 | } | ||
| 4031 | }, | ||
| 4032 | "flight": { | ||
| 4033 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 4034 | "departureDate": "2024-09-07T00:00:00", | ||
| 4035 | "returnDate": "2024-09-14T00:00:00", | ||
| 4036 | "departureTicketsLeft": 24, | ||
| 4037 | "returnTicketsLeft": 17, | ||
| 4038 | "departureAvailabilityType": "FreeSale", | ||
| 4039 | "returnAvailabilityType": "FreeSale", | ||
| 4040 | "isTwoWay": true, | ||
| 4041 | "sameBaggageForAll": false, | ||
| 4042 | "totalBaggage": false, | ||
| 4043 | "isBlock": true, | ||
| 4044 | "class": "Economy", | ||
| 4045 | "departureSegments": [ | ||
| 4046 | { | ||
| 4047 | "airlineCode": "FZ", | ||
| 4048 | "airlineName": "Fly Dubai", | ||
| 4049 | "flightCode": "FZ1722", | ||
| 4050 | "class": "Economy", | ||
| 4051 | "lugageWeight": 20, | ||
| 4052 | "handLugageWeight": 6, | ||
| 4053 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 4054 | "departureCountryName": "Kazakhstan", | ||
| 4055 | "departureCityName": "Almaty", | ||
| 4056 | "departureAirportCode": "ALA", | ||
| 4057 | "departureAirportName": "Almaty Intl Airport", | ||
| 4058 | "departureTerminalCode": "ALA", | ||
| 4059 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 4060 | "arrivalCountryName": "United Arab Emirates", | ||
| 4061 | "arrivalCityName": "Dubai", | ||
| 4062 | "arrivalAirportCode": "DXB", | ||
| 4063 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 4064 | "arrivalTerminalCode": "DXB3", | ||
| 4065 | "flightDuration": "5h 35m" | ||
| 4066 | } | ||
| 4067 | ], | ||
| 4068 | "returnSegments": [ | ||
| 4069 | { | ||
| 4070 | "airlineCode": "FZ", | ||
| 4071 | "airlineName": "Fly Dubai", | ||
| 4072 | "flightCode": "FZ1721", | ||
| 4073 | "class": "Economy", | ||
| 4074 | "lugageWeight": 20, | ||
| 4075 | "handLugageWeight": 6, | ||
| 4076 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 4077 | "departureCountryName": "United Arab Emirates", | ||
| 4078 | "departureCityName": "Dubai", | ||
| 4079 | "departureAirportCode": "DXB", | ||
| 4080 | "departureAirportName": "Dubai Intl Airport", | ||
| 4081 | "departureTerminalCode": "DXB3", | ||
| 4082 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 4083 | "arrivalCountryName": "Kazakhstan", | ||
| 4084 | "arrivalCityName": "Almaty", | ||
| 4085 | "arrivalAirportCode": "ALA", | ||
| 4086 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 4087 | "arrivalTerminalCode": "ALA", | ||
| 4088 | "flightDuration": "3h 10m" | ||
| 4089 | } | ||
| 4090 | ], | ||
| 4091 | "passengers": [ | ||
| 4092 | { | ||
| 4093 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 4094 | "isAdult": true, | ||
| 4095 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 4096 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 4097 | "forwardBaggages": [ | ||
| 4098 | { | ||
| 4099 | "baggageCode": "INCLUDED", | ||
| 4100 | "description": "20 Kg Included", | ||
| 4101 | "price": 0.0, | ||
| 4102 | "currency": "USD", | ||
| 4103 | "included": true | ||
| 4104 | } | ||
| 4105 | ], | ||
| 4106 | "backwardBaggages": [ | ||
| 4107 | { | ||
| 4108 | "baggageCode": "INCLUDED", | ||
| 4109 | "description": "20 Kg Included", | ||
| 4110 | "price": 0.0, | ||
| 4111 | "currency": "USD", | ||
| 4112 | "included": true | ||
| 4113 | } | ||
| 4114 | ] | ||
| 4115 | }, | ||
| 4116 | { | ||
| 4117 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 4118 | "isAdult": true, | ||
| 4119 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 4120 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 4121 | "forwardBaggages": [ | ||
| 4122 | { | ||
| 4123 | "baggageCode": "INCLUDED", | ||
| 4124 | "description": "20 Kg Included", | ||
| 4125 | "price": 0.0, | ||
| 4126 | "currency": "USD", | ||
| 4127 | "included": true | ||
| 4128 | } | ||
| 4129 | ], | ||
| 4130 | "backwardBaggages": [ | ||
| 4131 | { | ||
| 4132 | "baggageCode": "INCLUDED", | ||
| 4133 | "description": "20 Kg Included", | ||
| 4134 | "price": 0.0, | ||
| 4135 | "currency": "USD", | ||
| 4136 | "included": true | ||
| 4137 | } | ||
| 4138 | ] | ||
| 4139 | } | ||
| 4140 | ] | ||
| 4141 | }, | ||
| 4142 | "extraServices": [], | ||
| 4143 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:16", | ||
| 4144 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 4145 | "sortAirline": "fly dubai", | ||
| 4146 | "sortHotelName": "fujairah rotana resort spa", | ||
| 4147 | "sortDetails": "hb", | ||
| 4148 | "sortPlacement": "twin guest room dbl", | ||
| 4149 | "subList": [], | ||
| 4150 | "exchangeRate": 480.0 | ||
| 4151 | }, | ||
| 4152 | { | ||
| 4153 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:11f99f2c-9648-4c18-b650-3ce7ca27b709:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 4154 | "priceCurrency": "USD", | ||
| 4155 | "totalPrice": 1770.11, | ||
| 4156 | "agentCommissionPercent": 9.0, | ||
| 4157 | "agentCommissionAmount": 159.31, | ||
| 4158 | "includedExtrasAmount": 0, | ||
| 4159 | "priceDifference": 0, | ||
| 4160 | "hotel": { | ||
| 4161 | "hotelPriceId": "11f99f2c-9648-4c18-b650-3ce7ca27b709", | ||
| 4162 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 4163 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 4164 | "nights": 7, | ||
| 4165 | "mealPlan": "HB", | ||
| 4166 | "hotelClass": "5", | ||
| 4167 | "hotelColor": "#000000", | ||
| 4168 | "availabilityType": "FreeSale", | ||
| 4169 | "availableRoomsCount": 0, | ||
| 4170 | "fewRooms": true, | ||
| 4171 | "roomCategoryCode": "e6019a5a-760a-4cb1-9117-643ced101fb5", | ||
| 4172 | "roomCategoryName": "Twin Guest Room", | ||
| 4173 | "placementTypeName": "DBL", | ||
| 4174 | "checkInDate": "2024-09-07T00:00:00", | ||
| 4175 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 4176 | "adults": 2, | ||
| 4177 | "children": 0, | ||
| 4178 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 4179 | "districtName": "Al Aqah", | ||
| 4180 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 4181 | "cityName": "Fujairah", | ||
| 4182 | "countryCode": "AE", | ||
| 4183 | "countryName": "United Arab Emirates", | ||
| 4184 | "hasAlcohol": true, | ||
| 4185 | "hasFreeWifi": true, | ||
| 4186 | "hasMetro": false, | ||
| 4187 | "hasPool": true, | ||
| 4188 | "hasMall": false, | ||
| 4189 | "infantMaxAge": 1.99, | ||
| 4190 | "childMinAge": 2.0, | ||
| 4191 | "childMaxAge": 11.99, | ||
| 4192 | "teenMinAge": 0.0, | ||
| 4193 | "teenMaxAge": 0.0, | ||
| 4194 | "adultMinAge": 12.0, | ||
| 4195 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 4196 | "cancellationPolicy": { | ||
| 4197 | "noShowChargeValue": 100.0, | ||
| 4198 | "noShowChargeValueType": "%", | ||
| 4199 | "earlyDepartureChargeValue": 100.0, | ||
| 4200 | "earlyDepartureChargeValueType": "%", | ||
| 4201 | "conditions": [ | ||
| 4202 | { | ||
| 4203 | "timeunits": 4, | ||
| 4204 | "timeunitType": "Day", | ||
| 4205 | "timeOffsetTypeName": "Before Arrival", | ||
| 4206 | "chargeValue": 100.0, | ||
| 4207 | "chargeValueType": "%" | ||
| 4208 | } | ||
| 4209 | ] | ||
| 4210 | } | ||
| 4211 | }, | ||
| 4212 | "flight": { | ||
| 4213 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 4214 | "departureDate": "2024-09-07T00:00:00", | ||
| 4215 | "returnDate": "2024-09-14T00:00:00", | ||
| 4216 | "departureTicketsLeft": 24, | ||
| 4217 | "returnTicketsLeft": 17, | ||
| 4218 | "departureAvailabilityType": "FreeSale", | ||
| 4219 | "returnAvailabilityType": "FreeSale", | ||
| 4220 | "isTwoWay": true, | ||
| 4221 | "sameBaggageForAll": false, | ||
| 4222 | "totalBaggage": false, | ||
| 4223 | "isBlock": true, | ||
| 4224 | "class": "Economy", | ||
| 4225 | "departureSegments": [ | ||
| 4226 | { | ||
| 4227 | "airlineCode": "FZ", | ||
| 4228 | "airlineName": "Fly Dubai", | ||
| 4229 | "flightCode": "FZ1722", | ||
| 4230 | "class": "Economy", | ||
| 4231 | "lugageWeight": 20, | ||
| 4232 | "handLugageWeight": 6, | ||
| 4233 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 4234 | "departureCountryName": "Kazakhstan", | ||
| 4235 | "departureCityName": "Almaty", | ||
| 4236 | "departureAirportCode": "ALA", | ||
| 4237 | "departureAirportName": "Almaty Intl Airport", | ||
| 4238 | "departureTerminalCode": "ALA", | ||
| 4239 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 4240 | "arrivalCountryName": "United Arab Emirates", | ||
| 4241 | "arrivalCityName": "Dubai", | ||
| 4242 | "arrivalAirportCode": "DXB", | ||
| 4243 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 4244 | "arrivalTerminalCode": "DXB3", | ||
| 4245 | "flightDuration": "5h 35m" | ||
| 4246 | } | ||
| 4247 | ], | ||
| 4248 | "returnSegments": [ | ||
| 4249 | { | ||
| 4250 | "airlineCode": "FZ", | ||
| 4251 | "airlineName": "Fly Dubai", | ||
| 4252 | "flightCode": "FZ1721", | ||
| 4253 | "class": "Economy", | ||
| 4254 | "lugageWeight": 20, | ||
| 4255 | "handLugageWeight": 6, | ||
| 4256 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 4257 | "departureCountryName": "United Arab Emirates", | ||
| 4258 | "departureCityName": "Dubai", | ||
| 4259 | "departureAirportCode": "DXB", | ||
| 4260 | "departureAirportName": "Dubai Intl Airport", | ||
| 4261 | "departureTerminalCode": "DXB3", | ||
| 4262 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 4263 | "arrivalCountryName": "Kazakhstan", | ||
| 4264 | "arrivalCityName": "Almaty", | ||
| 4265 | "arrivalAirportCode": "ALA", | ||
| 4266 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 4267 | "arrivalTerminalCode": "ALA", | ||
| 4268 | "flightDuration": "3h 10m" | ||
| 4269 | } | ||
| 4270 | ], | ||
| 4271 | "passengers": [ | ||
| 4272 | { | ||
| 4273 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 4274 | "isAdult": true, | ||
| 4275 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 4276 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 4277 | "forwardBaggages": [ | ||
| 4278 | { | ||
| 4279 | "baggageCode": "INCLUDED", | ||
| 4280 | "description": "20 Kg Included", | ||
| 4281 | "price": 0.0, | ||
| 4282 | "currency": "USD", | ||
| 4283 | "included": true | ||
| 4284 | } | ||
| 4285 | ], | ||
| 4286 | "backwardBaggages": [ | ||
| 4287 | { | ||
| 4288 | "baggageCode": "INCLUDED", | ||
| 4289 | "description": "20 Kg Included", | ||
| 4290 | "price": 0.0, | ||
| 4291 | "currency": "USD", | ||
| 4292 | "included": true | ||
| 4293 | } | ||
| 4294 | ] | ||
| 4295 | }, | ||
| 4296 | { | ||
| 4297 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 4298 | "isAdult": true, | ||
| 4299 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 4300 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 4301 | "forwardBaggages": [ | ||
| 4302 | { | ||
| 4303 | "baggageCode": "INCLUDED", | ||
| 4304 | "description": "20 Kg Included", | ||
| 4305 | "price": 0.0, | ||
| 4306 | "currency": "USD", | ||
| 4307 | "included": true | ||
| 4308 | } | ||
| 4309 | ], | ||
| 4310 | "backwardBaggages": [ | ||
| 4311 | { | ||
| 4312 | "baggageCode": "INCLUDED", | ||
| 4313 | "description": "20 Kg Included", | ||
| 4314 | "price": 0.0, | ||
| 4315 | "currency": "USD", | ||
| 4316 | "included": true | ||
| 4317 | } | ||
| 4318 | ] | ||
| 4319 | } | ||
| 4320 | ] | ||
| 4321 | }, | ||
| 4322 | "extraServices": [], | ||
| 4323 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:17", | ||
| 4324 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 4325 | "sortAirline": "fly dubai", | ||
| 4326 | "sortHotelName": "fujairah rotana resort spa", | ||
| 4327 | "sortDetails": "hb", | ||
| 4328 | "sortPlacement": "twin guest room dbl", | ||
| 4329 | "subList": [], | ||
| 4330 | "exchangeRate": 480.0 | ||
| 4331 | }, | ||
| 4332 | { | ||
| 4333 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:c8c707d3-f061-4fa2-a7b3-ba5d42c67d03:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 4334 | "priceCurrency": "USD", | ||
| 4335 | "totalPrice": 1770.11, | ||
| 4336 | "agentCommissionPercent": 9.0, | ||
| 4337 | "agentCommissionAmount": 159.31, | ||
| 4338 | "includedExtrasAmount": 0, | ||
| 4339 | "priceDifference": 0, | ||
| 4340 | "hotel": { | ||
| 4341 | "hotelPriceId": "c8c707d3-f061-4fa2-a7b3-ba5d42c67d03", | ||
| 4342 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 4343 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 4344 | "nights": 7, | ||
| 4345 | "mealPlan": "HB", | ||
| 4346 | "hotelClass": "5", | ||
| 4347 | "hotelColor": "#000000", | ||
| 4348 | "availabilityType": "FreeSale", | ||
| 4349 | "availableRoomsCount": 0, | ||
| 4350 | "fewRooms": true, | ||
| 4351 | "roomCategoryCode": "53bd7e89-2c04-4944-b706-be67857fc076", | ||
| 4352 | "roomCategoryName": "King Guest Room", | ||
| 4353 | "placementTypeName": "DBL", | ||
| 4354 | "checkInDate": "2024-09-07T00:00:00", | ||
| 4355 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 4356 | "adults": 2, | ||
| 4357 | "children": 0, | ||
| 4358 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 4359 | "districtName": "Al Aqah", | ||
| 4360 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 4361 | "cityName": "Fujairah", | ||
| 4362 | "countryCode": "AE", | ||
| 4363 | "countryName": "United Arab Emirates", | ||
| 4364 | "hasAlcohol": true, | ||
| 4365 | "hasFreeWifi": true, | ||
| 4366 | "hasMetro": false, | ||
| 4367 | "hasPool": true, | ||
| 4368 | "hasMall": false, | ||
| 4369 | "infantMaxAge": 1.99, | ||
| 4370 | "childMinAge": 2.0, | ||
| 4371 | "childMaxAge": 11.99, | ||
| 4372 | "teenMinAge": 0.0, | ||
| 4373 | "teenMaxAge": 0.0, | ||
| 4374 | "adultMinAge": 12.0, | ||
| 4375 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 4376 | "cancellationPolicy": { | ||
| 4377 | "noShowChargeValue": 100.0, | ||
| 4378 | "noShowChargeValueType": "%", | ||
| 4379 | "earlyDepartureChargeValue": 100.0, | ||
| 4380 | "earlyDepartureChargeValueType": "%", | ||
| 4381 | "conditions": [ | ||
| 4382 | { | ||
| 4383 | "timeunits": 4, | ||
| 4384 | "timeunitType": "Day", | ||
| 4385 | "timeOffsetTypeName": "Before Arrival", | ||
| 4386 | "chargeValue": 100.0, | ||
| 4387 | "chargeValueType": "%" | ||
| 4388 | } | ||
| 4389 | ] | ||
| 4390 | } | ||
| 4391 | }, | ||
| 4392 | "flight": { | ||
| 4393 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 4394 | "departureDate": "2024-09-07T00:00:00", | ||
| 4395 | "returnDate": "2024-09-14T00:00:00", | ||
| 4396 | "departureTicketsLeft": 24, | ||
| 4397 | "returnTicketsLeft": 17, | ||
| 4398 | "departureAvailabilityType": "FreeSale", | ||
| 4399 | "returnAvailabilityType": "FreeSale", | ||
| 4400 | "isTwoWay": true, | ||
| 4401 | "sameBaggageForAll": false, | ||
| 4402 | "totalBaggage": false, | ||
| 4403 | "isBlock": true, | ||
| 4404 | "class": "Economy", | ||
| 4405 | "departureSegments": [ | ||
| 4406 | { | ||
| 4407 | "airlineCode": "FZ", | ||
| 4408 | "airlineName": "Fly Dubai", | ||
| 4409 | "flightCode": "FZ1722", | ||
| 4410 | "class": "Economy", | ||
| 4411 | "lugageWeight": 20, | ||
| 4412 | "handLugageWeight": 6, | ||
| 4413 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 4414 | "departureCountryName": "Kazakhstan", | ||
| 4415 | "departureCityName": "Almaty", | ||
| 4416 | "departureAirportCode": "ALA", | ||
| 4417 | "departureAirportName": "Almaty Intl Airport", | ||
| 4418 | "departureTerminalCode": "ALA", | ||
| 4419 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 4420 | "arrivalCountryName": "United Arab Emirates", | ||
| 4421 | "arrivalCityName": "Dubai", | ||
| 4422 | "arrivalAirportCode": "DXB", | ||
| 4423 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 4424 | "arrivalTerminalCode": "DXB3", | ||
| 4425 | "flightDuration": "5h 35m" | ||
| 4426 | } | ||
| 4427 | ], | ||
| 4428 | "returnSegments": [ | ||
| 4429 | { | ||
| 4430 | "airlineCode": "FZ", | ||
| 4431 | "airlineName": "Fly Dubai", | ||
| 4432 | "flightCode": "FZ1721", | ||
| 4433 | "class": "Economy", | ||
| 4434 | "lugageWeight": 20, | ||
| 4435 | "handLugageWeight": 6, | ||
| 4436 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 4437 | "departureCountryName": "United Arab Emirates", | ||
| 4438 | "departureCityName": "Dubai", | ||
| 4439 | "departureAirportCode": "DXB", | ||
| 4440 | "departureAirportName": "Dubai Intl Airport", | ||
| 4441 | "departureTerminalCode": "DXB3", | ||
| 4442 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 4443 | "arrivalCountryName": "Kazakhstan", | ||
| 4444 | "arrivalCityName": "Almaty", | ||
| 4445 | "arrivalAirportCode": "ALA", | ||
| 4446 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 4447 | "arrivalTerminalCode": "ALA", | ||
| 4448 | "flightDuration": "3h 10m" | ||
| 4449 | } | ||
| 4450 | ], | ||
| 4451 | "passengers": [ | ||
| 4452 | { | ||
| 4453 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 4454 | "isAdult": true, | ||
| 4455 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 4456 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 4457 | "forwardBaggages": [ | ||
| 4458 | { | ||
| 4459 | "baggageCode": "INCLUDED", | ||
| 4460 | "description": "20 Kg Included", | ||
| 4461 | "price": 0.0, | ||
| 4462 | "currency": "USD", | ||
| 4463 | "included": true | ||
| 4464 | } | ||
| 4465 | ], | ||
| 4466 | "backwardBaggages": [ | ||
| 4467 | { | ||
| 4468 | "baggageCode": "INCLUDED", | ||
| 4469 | "description": "20 Kg Included", | ||
| 4470 | "price": 0.0, | ||
| 4471 | "currency": "USD", | ||
| 4472 | "included": true | ||
| 4473 | } | ||
| 4474 | ] | ||
| 4475 | }, | ||
| 4476 | { | ||
| 4477 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 4478 | "isAdult": true, | ||
| 4479 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 4480 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 4481 | "forwardBaggages": [ | ||
| 4482 | { | ||
| 4483 | "baggageCode": "INCLUDED", | ||
| 4484 | "description": "20 Kg Included", | ||
| 4485 | "price": 0.0, | ||
| 4486 | "currency": "USD", | ||
| 4487 | "included": true | ||
| 4488 | } | ||
| 4489 | ], | ||
| 4490 | "backwardBaggages": [ | ||
| 4491 | { | ||
| 4492 | "baggageCode": "INCLUDED", | ||
| 4493 | "description": "20 Kg Included", | ||
| 4494 | "price": 0.0, | ||
| 4495 | "currency": "USD", | ||
| 4496 | "included": true | ||
| 4497 | } | ||
| 4498 | ] | ||
| 4499 | } | ||
| 4500 | ] | ||
| 4501 | }, | ||
| 4502 | "extraServices": [], | ||
| 4503 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:18", | ||
| 4504 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 4505 | "sortAirline": "fly dubai", | ||
| 4506 | "sortHotelName": "fujairah rotana resort spa", | ||
| 4507 | "sortDetails": "hb", | ||
| 4508 | "sortPlacement": "king guest room dbl", | ||
| 4509 | "subList": [], | ||
| 4510 | "exchangeRate": 480.0 | ||
| 4511 | }, | ||
| 4512 | { | ||
| 4513 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:e1089e11-02d6-4b38-9829-73d36f582c4e:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 4514 | "priceCurrency": "USD", | ||
| 4515 | "totalPrice": 1875.11, | ||
| 4516 | "agentCommissionPercent": 9.0, | ||
| 4517 | "agentCommissionAmount": 168.76, | ||
| 4518 | "includedExtrasAmount": 0, | ||
| 4519 | "priceDifference": 0, | ||
| 4520 | "hotel": { | ||
| 4521 | "hotelPriceId": "e1089e11-02d6-4b38-9829-73d36f582c4e", | ||
| 4522 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 4523 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 4524 | "nights": 7, | ||
| 4525 | "mealPlan": "BB", | ||
| 4526 | "hotelClass": "5", | ||
| 4527 | "hotelColor": "#000000", | ||
| 4528 | "availabilityType": "OnRequest", | ||
| 4529 | "availableRoomsCount": 0, | ||
| 4530 | "fewRooms": true, | ||
| 4531 | "roomCategoryCode": "4aa88c0e-b196-4346-bd2a-c0252a925ba1", | ||
| 4532 | "roomCategoryName": "Spacious Garden View Room", | ||
| 4533 | "placementTypeName": "DBL", | ||
| 4534 | "checkInDate": "2024-09-07T00:00:00", | ||
| 4535 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 4536 | "adults": 2, | ||
| 4537 | "children": 0, | ||
| 4538 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 4539 | "districtName": "Al Aqah", | ||
| 4540 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 4541 | "cityName": "Fujairah", | ||
| 4542 | "countryCode": "AE", | ||
| 4543 | "countryName": "United Arab Emirates", | ||
| 4544 | "hasAlcohol": true, | ||
| 4545 | "hasFreeWifi": true, | ||
| 4546 | "hasMetro": false, | ||
| 4547 | "hasPool": true, | ||
| 4548 | "hasMall": false, | ||
| 4549 | "infantMaxAge": 1.99, | ||
| 4550 | "childMinAge": 2.0, | ||
| 4551 | "childMaxAge": 11.99, | ||
| 4552 | "teenMinAge": 0.0, | ||
| 4553 | "teenMaxAge": 0.0, | ||
| 4554 | "adultMinAge": 12.0, | ||
| 4555 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 4556 | "cancellationPolicy": { | ||
| 4557 | "noShowChargeValue": 100.0, | ||
| 4558 | "noShowChargeValueType": "%", | ||
| 4559 | "earlyDepartureChargeValue": 100.0, | ||
| 4560 | "earlyDepartureChargeValueType": "%", | ||
| 4561 | "conditions": [ | ||
| 4562 | { | ||
| 4563 | "timeunits": 4, | ||
| 4564 | "timeunitType": "Day", | ||
| 4565 | "timeOffsetTypeName": "Before Arrival", | ||
| 4566 | "chargeValue": 100.0, | ||
| 4567 | "chargeValueType": "%" | ||
| 4568 | } | ||
| 4569 | ] | ||
| 4570 | } | ||
| 4571 | }, | ||
| 4572 | "flight": { | ||
| 4573 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 4574 | "departureDate": "2024-09-07T00:00:00", | ||
| 4575 | "returnDate": "2024-09-14T00:00:00", | ||
| 4576 | "departureTicketsLeft": 24, | ||
| 4577 | "returnTicketsLeft": 17, | ||
| 4578 | "departureAvailabilityType": "FreeSale", | ||
| 4579 | "returnAvailabilityType": "FreeSale", | ||
| 4580 | "isTwoWay": true, | ||
| 4581 | "sameBaggageForAll": false, | ||
| 4582 | "totalBaggage": false, | ||
| 4583 | "isBlock": true, | ||
| 4584 | "class": "Economy", | ||
| 4585 | "departureSegments": [ | ||
| 4586 | { | ||
| 4587 | "airlineCode": "FZ", | ||
| 4588 | "airlineName": "Fly Dubai", | ||
| 4589 | "flightCode": "FZ1722", | ||
| 4590 | "class": "Economy", | ||
| 4591 | "lugageWeight": 20, | ||
| 4592 | "handLugageWeight": 6, | ||
| 4593 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 4594 | "departureCountryName": "Kazakhstan", | ||
| 4595 | "departureCityName": "Almaty", | ||
| 4596 | "departureAirportCode": "ALA", | ||
| 4597 | "departureAirportName": "Almaty Intl Airport", | ||
| 4598 | "departureTerminalCode": "ALA", | ||
| 4599 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 4600 | "arrivalCountryName": "United Arab Emirates", | ||
| 4601 | "arrivalCityName": "Dubai", | ||
| 4602 | "arrivalAirportCode": "DXB", | ||
| 4603 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 4604 | "arrivalTerminalCode": "DXB3", | ||
| 4605 | "flightDuration": "5h 35m" | ||
| 4606 | } | ||
| 4607 | ], | ||
| 4608 | "returnSegments": [ | ||
| 4609 | { | ||
| 4610 | "airlineCode": "FZ", | ||
| 4611 | "airlineName": "Fly Dubai", | ||
| 4612 | "flightCode": "FZ1721", | ||
| 4613 | "class": "Economy", | ||
| 4614 | "lugageWeight": 20, | ||
| 4615 | "handLugageWeight": 6, | ||
| 4616 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 4617 | "departureCountryName": "United Arab Emirates", | ||
| 4618 | "departureCityName": "Dubai", | ||
| 4619 | "departureAirportCode": "DXB", | ||
| 4620 | "departureAirportName": "Dubai Intl Airport", | ||
| 4621 | "departureTerminalCode": "DXB3", | ||
| 4622 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 4623 | "arrivalCountryName": "Kazakhstan", | ||
| 4624 | "arrivalCityName": "Almaty", | ||
| 4625 | "arrivalAirportCode": "ALA", | ||
| 4626 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 4627 | "arrivalTerminalCode": "ALA", | ||
| 4628 | "flightDuration": "3h 10m" | ||
| 4629 | } | ||
| 4630 | ], | ||
| 4631 | "passengers": [ | ||
| 4632 | { | ||
| 4633 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 4634 | "isAdult": true, | ||
| 4635 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 4636 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 4637 | "forwardBaggages": [ | ||
| 4638 | { | ||
| 4639 | "baggageCode": "INCLUDED", | ||
| 4640 | "description": "20 Kg Included", | ||
| 4641 | "price": 0.0, | ||
| 4642 | "currency": "USD", | ||
| 4643 | "included": true | ||
| 4644 | } | ||
| 4645 | ], | ||
| 4646 | "backwardBaggages": [ | ||
| 4647 | { | ||
| 4648 | "baggageCode": "INCLUDED", | ||
| 4649 | "description": "20 Kg Included", | ||
| 4650 | "price": 0.0, | ||
| 4651 | "currency": "USD", | ||
| 4652 | "included": true | ||
| 4653 | } | ||
| 4654 | ] | ||
| 4655 | }, | ||
| 4656 | { | ||
| 4657 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 4658 | "isAdult": true, | ||
| 4659 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 4660 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 4661 | "forwardBaggages": [ | ||
| 4662 | { | ||
| 4663 | "baggageCode": "INCLUDED", | ||
| 4664 | "description": "20 Kg Included", | ||
| 4665 | "price": 0.0, | ||
| 4666 | "currency": "USD", | ||
| 4667 | "included": true | ||
| 4668 | } | ||
| 4669 | ], | ||
| 4670 | "backwardBaggages": [ | ||
| 4671 | { | ||
| 4672 | "baggageCode": "INCLUDED", | ||
| 4673 | "description": "20 Kg Included", | ||
| 4674 | "price": 0.0, | ||
| 4675 | "currency": "USD", | ||
| 4676 | "included": true | ||
| 4677 | } | ||
| 4678 | ] | ||
| 4679 | } | ||
| 4680 | ] | ||
| 4681 | }, | ||
| 4682 | "extraServices": [], | ||
| 4683 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:19", | ||
| 4684 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 4685 | "sortAirline": "fly dubai", | ||
| 4686 | "sortHotelName": "fujairah rotana resort spa", | ||
| 4687 | "sortDetails": "bb", | ||
| 4688 | "sortPlacement": "spacious garden view room dbl", | ||
| 4689 | "subList": [], | ||
| 4690 | "exchangeRate": 480.0 | ||
| 4691 | }, | ||
| 4692 | { | ||
| 4693 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:7d197efc-48d0-40c5-9752-a5a15ada6361:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 4694 | "priceCurrency": "USD", | ||
| 4695 | "totalPrice": 1875.11, | ||
| 4696 | "agentCommissionPercent": 9.0, | ||
| 4697 | "agentCommissionAmount": 168.76, | ||
| 4698 | "includedExtrasAmount": 0, | ||
| 4699 | "priceDifference": 0, | ||
| 4700 | "hotel": { | ||
| 4701 | "hotelPriceId": "7d197efc-48d0-40c5-9752-a5a15ada6361", | ||
| 4702 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 4703 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 4704 | "nights": 7, | ||
| 4705 | "mealPlan": "BB", | ||
| 4706 | "hotelClass": "5", | ||
| 4707 | "hotelColor": "#000000", | ||
| 4708 | "availabilityType": "OnRequest", | ||
| 4709 | "availableRoomsCount": 0, | ||
| 4710 | "fewRooms": true, | ||
| 4711 | "roomCategoryCode": "4aa88c0e-b196-4346-bd2a-c0252a925ba1", | ||
| 4712 | "roomCategoryName": "Spacious Garden View Room", | ||
| 4713 | "placementTypeName": "DBL", | ||
| 4714 | "checkInDate": "2024-09-07T00:00:00", | ||
| 4715 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 4716 | "adults": 2, | ||
| 4717 | "children": 0, | ||
| 4718 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 4719 | "districtName": "Al Aqah", | ||
| 4720 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 4721 | "cityName": "Fujairah", | ||
| 4722 | "countryCode": "AE", | ||
| 4723 | "countryName": "United Arab Emirates", | ||
| 4724 | "hasAlcohol": true, | ||
| 4725 | "hasFreeWifi": true, | ||
| 4726 | "hasMetro": false, | ||
| 4727 | "hasPool": true, | ||
| 4728 | "hasMall": false, | ||
| 4729 | "infantMaxAge": 1.99, | ||
| 4730 | "childMinAge": 2.0, | ||
| 4731 | "childMaxAge": 11.99, | ||
| 4732 | "teenMinAge": 0.0, | ||
| 4733 | "teenMaxAge": 0.0, | ||
| 4734 | "adultMinAge": 12.0, | ||
| 4735 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 4736 | "cancellationPolicy": { | ||
| 4737 | "noShowChargeValue": 100.0, | ||
| 4738 | "noShowChargeValueType": "%", | ||
| 4739 | "earlyDepartureChargeValue": 100.0, | ||
| 4740 | "earlyDepartureChargeValueType": "%", | ||
| 4741 | "conditions": [ | ||
| 4742 | { | ||
| 4743 | "timeunits": 4, | ||
| 4744 | "timeunitType": "Day", | ||
| 4745 | "timeOffsetTypeName": "Before Arrival", | ||
| 4746 | "chargeValue": 100.0, | ||
| 4747 | "chargeValueType": "%" | ||
| 4748 | } | ||
| 4749 | ] | ||
| 4750 | } | ||
| 4751 | }, | ||
| 4752 | "flight": { | ||
| 4753 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 4754 | "departureDate": "2024-09-07T00:00:00", | ||
| 4755 | "returnDate": "2024-09-14T00:00:00", | ||
| 4756 | "departureTicketsLeft": 24, | ||
| 4757 | "returnTicketsLeft": 17, | ||
| 4758 | "departureAvailabilityType": "FreeSale", | ||
| 4759 | "returnAvailabilityType": "FreeSale", | ||
| 4760 | "isTwoWay": true, | ||
| 4761 | "sameBaggageForAll": false, | ||
| 4762 | "totalBaggage": false, | ||
| 4763 | "isBlock": true, | ||
| 4764 | "class": "Economy", | ||
| 4765 | "departureSegments": [ | ||
| 4766 | { | ||
| 4767 | "airlineCode": "FZ", | ||
| 4768 | "airlineName": "Fly Dubai", | ||
| 4769 | "flightCode": "FZ1722", | ||
| 4770 | "class": "Economy", | ||
| 4771 | "lugageWeight": 20, | ||
| 4772 | "handLugageWeight": 6, | ||
| 4773 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 4774 | "departureCountryName": "Kazakhstan", | ||
| 4775 | "departureCityName": "Almaty", | ||
| 4776 | "departureAirportCode": "ALA", | ||
| 4777 | "departureAirportName": "Almaty Intl Airport", | ||
| 4778 | "departureTerminalCode": "ALA", | ||
| 4779 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 4780 | "arrivalCountryName": "United Arab Emirates", | ||
| 4781 | "arrivalCityName": "Dubai", | ||
| 4782 | "arrivalAirportCode": "DXB", | ||
| 4783 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 4784 | "arrivalTerminalCode": "DXB3", | ||
| 4785 | "flightDuration": "5h 35m" | ||
| 4786 | } | ||
| 4787 | ], | ||
| 4788 | "returnSegments": [ | ||
| 4789 | { | ||
| 4790 | "airlineCode": "FZ", | ||
| 4791 | "airlineName": "Fly Dubai", | ||
| 4792 | "flightCode": "FZ1721", | ||
| 4793 | "class": "Economy", | ||
| 4794 | "lugageWeight": 20, | ||
| 4795 | "handLugageWeight": 6, | ||
| 4796 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 4797 | "departureCountryName": "United Arab Emirates", | ||
| 4798 | "departureCityName": "Dubai", | ||
| 4799 | "departureAirportCode": "DXB", | ||
| 4800 | "departureAirportName": "Dubai Intl Airport", | ||
| 4801 | "departureTerminalCode": "DXB3", | ||
| 4802 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 4803 | "arrivalCountryName": "Kazakhstan", | ||
| 4804 | "arrivalCityName": "Almaty", | ||
| 4805 | "arrivalAirportCode": "ALA", | ||
| 4806 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 4807 | "arrivalTerminalCode": "ALA", | ||
| 4808 | "flightDuration": "3h 10m" | ||
| 4809 | } | ||
| 4810 | ], | ||
| 4811 | "passengers": [ | ||
| 4812 | { | ||
| 4813 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 4814 | "isAdult": true, | ||
| 4815 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 4816 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 4817 | "forwardBaggages": [ | ||
| 4818 | { | ||
| 4819 | "baggageCode": "INCLUDED", | ||
| 4820 | "description": "20 Kg Included", | ||
| 4821 | "price": 0.0, | ||
| 4822 | "currency": "USD", | ||
| 4823 | "included": true | ||
| 4824 | } | ||
| 4825 | ], | ||
| 4826 | "backwardBaggages": [ | ||
| 4827 | { | ||
| 4828 | "baggageCode": "INCLUDED", | ||
| 4829 | "description": "20 Kg Included", | ||
| 4830 | "price": 0.0, | ||
| 4831 | "currency": "USD", | ||
| 4832 | "included": true | ||
| 4833 | } | ||
| 4834 | ] | ||
| 4835 | }, | ||
| 4836 | { | ||
| 4837 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 4838 | "isAdult": true, | ||
| 4839 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 4840 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 4841 | "forwardBaggages": [ | ||
| 4842 | { | ||
| 4843 | "baggageCode": "INCLUDED", | ||
| 4844 | "description": "20 Kg Included", | ||
| 4845 | "price": 0.0, | ||
| 4846 | "currency": "USD", | ||
| 4847 | "included": true | ||
| 4848 | } | ||
| 4849 | ], | ||
| 4850 | "backwardBaggages": [ | ||
| 4851 | { | ||
| 4852 | "baggageCode": "INCLUDED", | ||
| 4853 | "description": "20 Kg Included", | ||
| 4854 | "price": 0.0, | ||
| 4855 | "currency": "USD", | ||
| 4856 | "included": true | ||
| 4857 | } | ||
| 4858 | ] | ||
| 4859 | } | ||
| 4860 | ] | ||
| 4861 | }, | ||
| 4862 | "extraServices": [], | ||
| 4863 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:20", | ||
| 4864 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 4865 | "sortAirline": "fly dubai", | ||
| 4866 | "sortHotelName": "fujairah rotana resort spa", | ||
| 4867 | "sortDetails": "bb", | ||
| 4868 | "sortPlacement": "spacious garden view room dbl", | ||
| 4869 | "subList": [], | ||
| 4870 | "exchangeRate": 480.0 | ||
| 4871 | }, | ||
| 4872 | { | ||
| 4873 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:eb7f1ac9-25b3-453b-9bec-e5a27610d8ea:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 4874 | "priceCurrency": "USD", | ||
| 4875 | "totalPrice": 1876.96, | ||
| 4876 | "agentCommissionPercent": 9.0, | ||
| 4877 | "agentCommissionAmount": 168.93, | ||
| 4878 | "includedExtrasAmount": 0, | ||
| 4879 | "priceDifference": 0, | ||
| 4880 | "hotel": { | ||
| 4881 | "hotelPriceId": "eb7f1ac9-25b3-453b-9bec-e5a27610d8ea", | ||
| 4882 | "hotelName": "Le Meridien Al Aqah Beach Resort", | ||
| 4883 | "hotelCode": "63300069-0631-4c34-946e-d2ca9753ff6e", | ||
| 4884 | "nights": 7, | ||
| 4885 | "mealPlan": "HB", | ||
| 4886 | "hotelClass": "5", | ||
| 4887 | "hotelColor": "#000000", | ||
| 4888 | "availabilityType": "FreeSale", | ||
| 4889 | "availableRoomsCount": 0, | ||
| 4890 | "fewRooms": true, | ||
| 4891 | "roomCategoryCode": "97ccbf2f-7195-4eea-9d45-926fbe73b482", | ||
| 4892 | "roomCategoryName": "Deluxe Guest Room", | ||
| 4893 | "placementTypeName": "DBL", | ||
| 4894 | "checkInDate": "2024-09-07T00:00:00", | ||
| 4895 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 4896 | "adults": 2, | ||
| 4897 | "children": 0, | ||
| 4898 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 4899 | "districtName": "Al Aqah", | ||
| 4900 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 4901 | "cityName": "Fujairah", | ||
| 4902 | "countryCode": "AE", | ||
| 4903 | "countryName": "United Arab Emirates", | ||
| 4904 | "hasAlcohol": true, | ||
| 4905 | "hasFreeWifi": true, | ||
| 4906 | "hasMetro": false, | ||
| 4907 | "hasPool": true, | ||
| 4908 | "hasMall": false, | ||
| 4909 | "infantMaxAge": 1.99, | ||
| 4910 | "childMinAge": 2.0, | ||
| 4911 | "childMaxAge": 11.99, | ||
| 4912 | "teenMinAge": 12.0, | ||
| 4913 | "teenMaxAge": 15.99, | ||
| 4914 | "adultMinAge": 16.0, | ||
| 4915 | "cancellationPolicyDescription": "Cancellation Policy: 3 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 4916 | "cancellationPolicy": { | ||
| 4917 | "noShowChargeValue": 100.0, | ||
| 4918 | "noShowChargeValueType": "%", | ||
| 4919 | "earlyDepartureChargeValue": 100.0, | ||
| 4920 | "earlyDepartureChargeValueType": "%", | ||
| 4921 | "conditions": [ | ||
| 4922 | { | ||
| 4923 | "timeunits": 3, | ||
| 4924 | "timeunitType": "Day", | ||
| 4925 | "timeOffsetTypeName": "Before Arrival", | ||
| 4926 | "chargeValue": 1.0, | ||
| 4927 | "chargeValueType": "Night" | ||
| 4928 | } | ||
| 4929 | ] | ||
| 4930 | } | ||
| 4931 | }, | ||
| 4932 | "flight": { | ||
| 4933 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 4934 | "departureDate": "2024-09-07T00:00:00", | ||
| 4935 | "returnDate": "2024-09-14T00:00:00", | ||
| 4936 | "departureTicketsLeft": 24, | ||
| 4937 | "returnTicketsLeft": 17, | ||
| 4938 | "departureAvailabilityType": "FreeSale", | ||
| 4939 | "returnAvailabilityType": "FreeSale", | ||
| 4940 | "isTwoWay": true, | ||
| 4941 | "sameBaggageForAll": false, | ||
| 4942 | "totalBaggage": false, | ||
| 4943 | "isBlock": true, | ||
| 4944 | "class": "Economy", | ||
| 4945 | "departureSegments": [ | ||
| 4946 | { | ||
| 4947 | "airlineCode": "FZ", | ||
| 4948 | "airlineName": "Fly Dubai", | ||
| 4949 | "flightCode": "FZ1722", | ||
| 4950 | "class": "Economy", | ||
| 4951 | "lugageWeight": 20, | ||
| 4952 | "handLugageWeight": 6, | ||
| 4953 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 4954 | "departureCountryName": "Kazakhstan", | ||
| 4955 | "departureCityName": "Almaty", | ||
| 4956 | "departureAirportCode": "ALA", | ||
| 4957 | "departureAirportName": "Almaty Intl Airport", | ||
| 4958 | "departureTerminalCode": "ALA", | ||
| 4959 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 4960 | "arrivalCountryName": "United Arab Emirates", | ||
| 4961 | "arrivalCityName": "Dubai", | ||
| 4962 | "arrivalAirportCode": "DXB", | ||
| 4963 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 4964 | "arrivalTerminalCode": "DXB3", | ||
| 4965 | "flightDuration": "5h 35m" | ||
| 4966 | } | ||
| 4967 | ], | ||
| 4968 | "returnSegments": [ | ||
| 4969 | { | ||
| 4970 | "airlineCode": "FZ", | ||
| 4971 | "airlineName": "Fly Dubai", | ||
| 4972 | "flightCode": "FZ1721", | ||
| 4973 | "class": "Economy", | ||
| 4974 | "lugageWeight": 20, | ||
| 4975 | "handLugageWeight": 6, | ||
| 4976 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 4977 | "departureCountryName": "United Arab Emirates", | ||
| 4978 | "departureCityName": "Dubai", | ||
| 4979 | "departureAirportCode": "DXB", | ||
| 4980 | "departureAirportName": "Dubai Intl Airport", | ||
| 4981 | "departureTerminalCode": "DXB3", | ||
| 4982 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 4983 | "arrivalCountryName": "Kazakhstan", | ||
| 4984 | "arrivalCityName": "Almaty", | ||
| 4985 | "arrivalAirportCode": "ALA", | ||
| 4986 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 4987 | "arrivalTerminalCode": "ALA", | ||
| 4988 | "flightDuration": "3h 10m" | ||
| 4989 | } | ||
| 4990 | ], | ||
| 4991 | "passengers": [ | ||
| 4992 | { | ||
| 4993 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 4994 | "isAdult": true, | ||
| 4995 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 4996 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 4997 | "forwardBaggages": [ | ||
| 4998 | { | ||
| 4999 | "baggageCode": "INCLUDED", | ||
| 5000 | "description": "20 Kg Included", | ||
| 5001 | "price": 0.0, | ||
| 5002 | "currency": "USD", | ||
| 5003 | "included": true | ||
| 5004 | } | ||
| 5005 | ], | ||
| 5006 | "backwardBaggages": [ | ||
| 5007 | { | ||
| 5008 | "baggageCode": "INCLUDED", | ||
| 5009 | "description": "20 Kg Included", | ||
| 5010 | "price": 0.0, | ||
| 5011 | "currency": "USD", | ||
| 5012 | "included": true | ||
| 5013 | } | ||
| 5014 | ] | ||
| 5015 | }, | ||
| 5016 | { | ||
| 5017 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 5018 | "isAdult": true, | ||
| 5019 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 5020 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 5021 | "forwardBaggages": [ | ||
| 5022 | { | ||
| 5023 | "baggageCode": "INCLUDED", | ||
| 5024 | "description": "20 Kg Included", | ||
| 5025 | "price": 0.0, | ||
| 5026 | "currency": "USD", | ||
| 5027 | "included": true | ||
| 5028 | } | ||
| 5029 | ], | ||
| 5030 | "backwardBaggages": [ | ||
| 5031 | { | ||
| 5032 | "baggageCode": "INCLUDED", | ||
| 5033 | "description": "20 Kg Included", | ||
| 5034 | "price": 0.0, | ||
| 5035 | "currency": "USD", | ||
| 5036 | "included": true | ||
| 5037 | } | ||
| 5038 | ] | ||
| 5039 | } | ||
| 5040 | ] | ||
| 5041 | }, | ||
| 5042 | "extraServices": [], | ||
| 5043 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:21", | ||
| 5044 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 5045 | "sortAirline": "fly dubai", | ||
| 5046 | "sortHotelName": "le meridien al aqah beach resort", | ||
| 5047 | "sortDetails": "hb", | ||
| 5048 | "sortPlacement": "deluxe guest room dbl", | ||
| 5049 | "subList": [], | ||
| 5050 | "exchangeRate": 480.0 | ||
| 5051 | }, | ||
| 5052 | { | ||
| 5053 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:c4792901-dee4-45a0-a8c7-630bbcb976fc:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 5054 | "priceCurrency": "USD", | ||
| 5055 | "totalPrice": 1897.04, | ||
| 5056 | "agentCommissionPercent": 9.0, | ||
| 5057 | "agentCommissionAmount": 170.73, | ||
| 5058 | "includedExtrasAmount": 0, | ||
| 5059 | "priceDifference": 0, | ||
| 5060 | "hotel": { | ||
| 5061 | "hotelPriceId": "c4792901-dee4-45a0-a8c7-630bbcb976fc", | ||
| 5062 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 5063 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 5064 | "nights": 7, | ||
| 5065 | "mealPlan": "HB", | ||
| 5066 | "hotelClass": "5", | ||
| 5067 | "hotelColor": "#000000", | ||
| 5068 | "availabilityType": "OnRequest", | ||
| 5069 | "availableRoomsCount": 0, | ||
| 5070 | "fewRooms": true, | ||
| 5071 | "roomCategoryCode": "8a20d149-2bfc-4563-b43b-1b101410489f", | ||
| 5072 | "roomCategoryName": "Ocean View Room King", | ||
| 5073 | "placementTypeName": "DBL", | ||
| 5074 | "checkInDate": "2024-09-07T00:00:00", | ||
| 5075 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 5076 | "adults": 2, | ||
| 5077 | "children": 0, | ||
| 5078 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 5079 | "districtName": "Al Aqah", | ||
| 5080 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 5081 | "cityName": "Fujairah", | ||
| 5082 | "countryCode": "AE", | ||
| 5083 | "countryName": "United Arab Emirates", | ||
| 5084 | "hasAlcohol": true, | ||
| 5085 | "hasFreeWifi": true, | ||
| 5086 | "hasMetro": false, | ||
| 5087 | "hasPool": true, | ||
| 5088 | "hasMall": false, | ||
| 5089 | "infantMaxAge": 1.99, | ||
| 5090 | "childMinAge": 2.0, | ||
| 5091 | "childMaxAge": 11.99, | ||
| 5092 | "teenMinAge": 0.0, | ||
| 5093 | "teenMaxAge": 0.0, | ||
| 5094 | "adultMinAge": 12.0, | ||
| 5095 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 5096 | "cancellationPolicy": { | ||
| 5097 | "noShowChargeValue": 100.0, | ||
| 5098 | "noShowChargeValueType": "%", | ||
| 5099 | "earlyDepartureChargeValue": 100.0, | ||
| 5100 | "earlyDepartureChargeValueType": "%", | ||
| 5101 | "conditions": [ | ||
| 5102 | { | ||
| 5103 | "timeunits": 4, | ||
| 5104 | "timeunitType": "Day", | ||
| 5105 | "timeOffsetTypeName": "Before Arrival", | ||
| 5106 | "chargeValue": 100.0, | ||
| 5107 | "chargeValueType": "%" | ||
| 5108 | } | ||
| 5109 | ] | ||
| 5110 | } | ||
| 5111 | }, | ||
| 5112 | "flight": { | ||
| 5113 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 5114 | "departureDate": "2024-09-07T00:00:00", | ||
| 5115 | "returnDate": "2024-09-14T00:00:00", | ||
| 5116 | "departureTicketsLeft": 24, | ||
| 5117 | "returnTicketsLeft": 17, | ||
| 5118 | "departureAvailabilityType": "FreeSale", | ||
| 5119 | "returnAvailabilityType": "FreeSale", | ||
| 5120 | "isTwoWay": true, | ||
| 5121 | "sameBaggageForAll": false, | ||
| 5122 | "totalBaggage": false, | ||
| 5123 | "isBlock": true, | ||
| 5124 | "class": "Economy", | ||
| 5125 | "departureSegments": [ | ||
| 5126 | { | ||
| 5127 | "airlineCode": "FZ", | ||
| 5128 | "airlineName": "Fly Dubai", | ||
| 5129 | "flightCode": "FZ1722", | ||
| 5130 | "class": "Economy", | ||
| 5131 | "lugageWeight": 20, | ||
| 5132 | "handLugageWeight": 6, | ||
| 5133 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 5134 | "departureCountryName": "Kazakhstan", | ||
| 5135 | "departureCityName": "Almaty", | ||
| 5136 | "departureAirportCode": "ALA", | ||
| 5137 | "departureAirportName": "Almaty Intl Airport", | ||
| 5138 | "departureTerminalCode": "ALA", | ||
| 5139 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 5140 | "arrivalCountryName": "United Arab Emirates", | ||
| 5141 | "arrivalCityName": "Dubai", | ||
| 5142 | "arrivalAirportCode": "DXB", | ||
| 5143 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 5144 | "arrivalTerminalCode": "DXB3", | ||
| 5145 | "flightDuration": "5h 35m" | ||
| 5146 | } | ||
| 5147 | ], | ||
| 5148 | "returnSegments": [ | ||
| 5149 | { | ||
| 5150 | "airlineCode": "FZ", | ||
| 5151 | "airlineName": "Fly Dubai", | ||
| 5152 | "flightCode": "FZ1721", | ||
| 5153 | "class": "Economy", | ||
| 5154 | "lugageWeight": 20, | ||
| 5155 | "handLugageWeight": 6, | ||
| 5156 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 5157 | "departureCountryName": "United Arab Emirates", | ||
| 5158 | "departureCityName": "Dubai", | ||
| 5159 | "departureAirportCode": "DXB", | ||
| 5160 | "departureAirportName": "Dubai Intl Airport", | ||
| 5161 | "departureTerminalCode": "DXB3", | ||
| 5162 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 5163 | "arrivalCountryName": "Kazakhstan", | ||
| 5164 | "arrivalCityName": "Almaty", | ||
| 5165 | "arrivalAirportCode": "ALA", | ||
| 5166 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 5167 | "arrivalTerminalCode": "ALA", | ||
| 5168 | "flightDuration": "3h 10m" | ||
| 5169 | } | ||
| 5170 | ], | ||
| 5171 | "passengers": [ | ||
| 5172 | { | ||
| 5173 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 5174 | "isAdult": true, | ||
| 5175 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 5176 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 5177 | "forwardBaggages": [ | ||
| 5178 | { | ||
| 5179 | "baggageCode": "INCLUDED", | ||
| 5180 | "description": "20 Kg Included", | ||
| 5181 | "price": 0.0, | ||
| 5182 | "currency": "USD", | ||
| 5183 | "included": true | ||
| 5184 | } | ||
| 5185 | ], | ||
| 5186 | "backwardBaggages": [ | ||
| 5187 | { | ||
| 5188 | "baggageCode": "INCLUDED", | ||
| 5189 | "description": "20 Kg Included", | ||
| 5190 | "price": 0.0, | ||
| 5191 | "currency": "USD", | ||
| 5192 | "included": true | ||
| 5193 | } | ||
| 5194 | ] | ||
| 5195 | }, | ||
| 5196 | { | ||
| 5197 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 5198 | "isAdult": true, | ||
| 5199 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 5200 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 5201 | "forwardBaggages": [ | ||
| 5202 | { | ||
| 5203 | "baggageCode": "INCLUDED", | ||
| 5204 | "description": "20 Kg Included", | ||
| 5205 | "price": 0.0, | ||
| 5206 | "currency": "USD", | ||
| 5207 | "included": true | ||
| 5208 | } | ||
| 5209 | ], | ||
| 5210 | "backwardBaggages": [ | ||
| 5211 | { | ||
| 5212 | "baggageCode": "INCLUDED", | ||
| 5213 | "description": "20 Kg Included", | ||
| 5214 | "price": 0.0, | ||
| 5215 | "currency": "USD", | ||
| 5216 | "included": true | ||
| 5217 | } | ||
| 5218 | ] | ||
| 5219 | } | ||
| 5220 | ] | ||
| 5221 | }, | ||
| 5222 | "extraServices": [], | ||
| 5223 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:22", | ||
| 5224 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 5225 | "sortAirline": "fly dubai", | ||
| 5226 | "sortHotelName": "fujairah rotana resort spa", | ||
| 5227 | "sortDetails": "hb", | ||
| 5228 | "sortPlacement": "ocean view room king dbl", | ||
| 5229 | "subList": [], | ||
| 5230 | "exchangeRate": 480.0 | ||
| 5231 | }, | ||
| 5232 | { | ||
| 5233 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:ac85dd61-4d7f-4bcf-880f-35c0578dd363:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 5234 | "priceCurrency": "USD", | ||
| 5235 | "totalPrice": 1897.04, | ||
| 5236 | "agentCommissionPercent": 9.0, | ||
| 5237 | "agentCommissionAmount": 170.73, | ||
| 5238 | "includedExtrasAmount": 0, | ||
| 5239 | "priceDifference": 0, | ||
| 5240 | "hotel": { | ||
| 5241 | "hotelPriceId": "ac85dd61-4d7f-4bcf-880f-35c0578dd363", | ||
| 5242 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 5243 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 5244 | "nights": 7, | ||
| 5245 | "mealPlan": "HB", | ||
| 5246 | "hotelClass": "5", | ||
| 5247 | "hotelColor": "#000000", | ||
| 5248 | "availabilityType": "FreeSale", | ||
| 5249 | "availableRoomsCount": 0, | ||
| 5250 | "fewRooms": true, | ||
| 5251 | "roomCategoryCode": "b84c625b-c941-48d9-93c9-f2e87e1ce099", | ||
| 5252 | "roomCategoryName": "Ocean View Room Twin", | ||
| 5253 | "placementTypeName": "DBL", | ||
| 5254 | "checkInDate": "2024-09-07T00:00:00", | ||
| 5255 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 5256 | "adults": 2, | ||
| 5257 | "children": 0, | ||
| 5258 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 5259 | "districtName": "Al Aqah", | ||
| 5260 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 5261 | "cityName": "Fujairah", | ||
| 5262 | "countryCode": "AE", | ||
| 5263 | "countryName": "United Arab Emirates", | ||
| 5264 | "hasAlcohol": true, | ||
| 5265 | "hasFreeWifi": true, | ||
| 5266 | "hasMetro": false, | ||
| 5267 | "hasPool": true, | ||
| 5268 | "hasMall": false, | ||
| 5269 | "infantMaxAge": 1.99, | ||
| 5270 | "childMinAge": 2.0, | ||
| 5271 | "childMaxAge": 11.99, | ||
| 5272 | "teenMinAge": 0.0, | ||
| 5273 | "teenMaxAge": 0.0, | ||
| 5274 | "adultMinAge": 12.0, | ||
| 5275 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 5276 | "cancellationPolicy": { | ||
| 5277 | "noShowChargeValue": 100.0, | ||
| 5278 | "noShowChargeValueType": "%", | ||
| 5279 | "earlyDepartureChargeValue": 100.0, | ||
| 5280 | "earlyDepartureChargeValueType": "%", | ||
| 5281 | "conditions": [ | ||
| 5282 | { | ||
| 5283 | "timeunits": 4, | ||
| 5284 | "timeunitType": "Day", | ||
| 5285 | "timeOffsetTypeName": "Before Arrival", | ||
| 5286 | "chargeValue": 100.0, | ||
| 5287 | "chargeValueType": "%" | ||
| 5288 | } | ||
| 5289 | ] | ||
| 5290 | } | ||
| 5291 | }, | ||
| 5292 | "flight": { | ||
| 5293 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 5294 | "departureDate": "2024-09-07T00:00:00", | ||
| 5295 | "returnDate": "2024-09-14T00:00:00", | ||
| 5296 | "departureTicketsLeft": 24, | ||
| 5297 | "returnTicketsLeft": 17, | ||
| 5298 | "departureAvailabilityType": "FreeSale", | ||
| 5299 | "returnAvailabilityType": "FreeSale", | ||
| 5300 | "isTwoWay": true, | ||
| 5301 | "sameBaggageForAll": false, | ||
| 5302 | "totalBaggage": false, | ||
| 5303 | "isBlock": true, | ||
| 5304 | "class": "Economy", | ||
| 5305 | "departureSegments": [ | ||
| 5306 | { | ||
| 5307 | "airlineCode": "FZ", | ||
| 5308 | "airlineName": "Fly Dubai", | ||
| 5309 | "flightCode": "FZ1722", | ||
| 5310 | "class": "Economy", | ||
| 5311 | "lugageWeight": 20, | ||
| 5312 | "handLugageWeight": 6, | ||
| 5313 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 5314 | "departureCountryName": "Kazakhstan", | ||
| 5315 | "departureCityName": "Almaty", | ||
| 5316 | "departureAirportCode": "ALA", | ||
| 5317 | "departureAirportName": "Almaty Intl Airport", | ||
| 5318 | "departureTerminalCode": "ALA", | ||
| 5319 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 5320 | "arrivalCountryName": "United Arab Emirates", | ||
| 5321 | "arrivalCityName": "Dubai", | ||
| 5322 | "arrivalAirportCode": "DXB", | ||
| 5323 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 5324 | "arrivalTerminalCode": "DXB3", | ||
| 5325 | "flightDuration": "5h 35m" | ||
| 5326 | } | ||
| 5327 | ], | ||
| 5328 | "returnSegments": [ | ||
| 5329 | { | ||
| 5330 | "airlineCode": "FZ", | ||
| 5331 | "airlineName": "Fly Dubai", | ||
| 5332 | "flightCode": "FZ1721", | ||
| 5333 | "class": "Economy", | ||
| 5334 | "lugageWeight": 20, | ||
| 5335 | "handLugageWeight": 6, | ||
| 5336 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 5337 | "departureCountryName": "United Arab Emirates", | ||
| 5338 | "departureCityName": "Dubai", | ||
| 5339 | "departureAirportCode": "DXB", | ||
| 5340 | "departureAirportName": "Dubai Intl Airport", | ||
| 5341 | "departureTerminalCode": "DXB3", | ||
| 5342 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 5343 | "arrivalCountryName": "Kazakhstan", | ||
| 5344 | "arrivalCityName": "Almaty", | ||
| 5345 | "arrivalAirportCode": "ALA", | ||
| 5346 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 5347 | "arrivalTerminalCode": "ALA", | ||
| 5348 | "flightDuration": "3h 10m" | ||
| 5349 | } | ||
| 5350 | ], | ||
| 5351 | "passengers": [ | ||
| 5352 | { | ||
| 5353 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 5354 | "isAdult": true, | ||
| 5355 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 5356 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 5357 | "forwardBaggages": [ | ||
| 5358 | { | ||
| 5359 | "baggageCode": "INCLUDED", | ||
| 5360 | "description": "20 Kg Included", | ||
| 5361 | "price": 0.0, | ||
| 5362 | "currency": "USD", | ||
| 5363 | "included": true | ||
| 5364 | } | ||
| 5365 | ], | ||
| 5366 | "backwardBaggages": [ | ||
| 5367 | { | ||
| 5368 | "baggageCode": "INCLUDED", | ||
| 5369 | "description": "20 Kg Included", | ||
| 5370 | "price": 0.0, | ||
| 5371 | "currency": "USD", | ||
| 5372 | "included": true | ||
| 5373 | } | ||
| 5374 | ] | ||
| 5375 | }, | ||
| 5376 | { | ||
| 5377 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 5378 | "isAdult": true, | ||
| 5379 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 5380 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 5381 | "forwardBaggages": [ | ||
| 5382 | { | ||
| 5383 | "baggageCode": "INCLUDED", | ||
| 5384 | "description": "20 Kg Included", | ||
| 5385 | "price": 0.0, | ||
| 5386 | "currency": "USD", | ||
| 5387 | "included": true | ||
| 5388 | } | ||
| 5389 | ], | ||
| 5390 | "backwardBaggages": [ | ||
| 5391 | { | ||
| 5392 | "baggageCode": "INCLUDED", | ||
| 5393 | "description": "20 Kg Included", | ||
| 5394 | "price": 0.0, | ||
| 5395 | "currency": "USD", | ||
| 5396 | "included": true | ||
| 5397 | } | ||
| 5398 | ] | ||
| 5399 | } | ||
| 5400 | ] | ||
| 5401 | }, | ||
| 5402 | "extraServices": [], | ||
| 5403 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:23", | ||
| 5404 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 5405 | "sortAirline": "fly dubai", | ||
| 5406 | "sortHotelName": "fujairah rotana resort spa", | ||
| 5407 | "sortDetails": "hb", | ||
| 5408 | "sortPlacement": "ocean view room twin dbl", | ||
| 5409 | "subList": [], | ||
| 5410 | "exchangeRate": 480.0 | ||
| 5411 | }, | ||
| 5412 | { | ||
| 5413 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:539ce7f0-6004-4eb0-b16f-253f0a688066:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 5414 | "priceCurrency": "USD", | ||
| 5415 | "totalPrice": 1897.04, | ||
| 5416 | "agentCommissionPercent": 9.0, | ||
| 5417 | "agentCommissionAmount": 170.73, | ||
| 5418 | "includedExtrasAmount": 0, | ||
| 5419 | "priceDifference": 0, | ||
| 5420 | "hotel": { | ||
| 5421 | "hotelPriceId": "539ce7f0-6004-4eb0-b16f-253f0a688066", | ||
| 5422 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 5423 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 5424 | "nights": 7, | ||
| 5425 | "mealPlan": "HB", | ||
| 5426 | "hotelClass": "5", | ||
| 5427 | "hotelColor": "#000000", | ||
| 5428 | "availabilityType": "FreeSale", | ||
| 5429 | "availableRoomsCount": 0, | ||
| 5430 | "fewRooms": true, | ||
| 5431 | "roomCategoryCode": "b84c625b-c941-48d9-93c9-f2e87e1ce099", | ||
| 5432 | "roomCategoryName": "Ocean View Room Twin", | ||
| 5433 | "placementTypeName": "DBL", | ||
| 5434 | "checkInDate": "2024-09-07T00:00:00", | ||
| 5435 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 5436 | "adults": 2, | ||
| 5437 | "children": 0, | ||
| 5438 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 5439 | "districtName": "Al Aqah", | ||
| 5440 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 5441 | "cityName": "Fujairah", | ||
| 5442 | "countryCode": "AE", | ||
| 5443 | "countryName": "United Arab Emirates", | ||
| 5444 | "hasAlcohol": true, | ||
| 5445 | "hasFreeWifi": true, | ||
| 5446 | "hasMetro": false, | ||
| 5447 | "hasPool": true, | ||
| 5448 | "hasMall": false, | ||
| 5449 | "infantMaxAge": 1.99, | ||
| 5450 | "childMinAge": 2.0, | ||
| 5451 | "childMaxAge": 11.99, | ||
| 5452 | "teenMinAge": 0.0, | ||
| 5453 | "teenMaxAge": 0.0, | ||
| 5454 | "adultMinAge": 12.0, | ||
| 5455 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 5456 | "cancellationPolicy": { | ||
| 5457 | "noShowChargeValue": 100.0, | ||
| 5458 | "noShowChargeValueType": "%", | ||
| 5459 | "earlyDepartureChargeValue": 100.0, | ||
| 5460 | "earlyDepartureChargeValueType": "%", | ||
| 5461 | "conditions": [ | ||
| 5462 | { | ||
| 5463 | "timeunits": 4, | ||
| 5464 | "timeunitType": "Day", | ||
| 5465 | "timeOffsetTypeName": "Before Arrival", | ||
| 5466 | "chargeValue": 100.0, | ||
| 5467 | "chargeValueType": "%" | ||
| 5468 | } | ||
| 5469 | ] | ||
| 5470 | } | ||
| 5471 | }, | ||
| 5472 | "flight": { | ||
| 5473 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 5474 | "departureDate": "2024-09-07T00:00:00", | ||
| 5475 | "returnDate": "2024-09-14T00:00:00", | ||
| 5476 | "departureTicketsLeft": 24, | ||
| 5477 | "returnTicketsLeft": 17, | ||
| 5478 | "departureAvailabilityType": "FreeSale", | ||
| 5479 | "returnAvailabilityType": "FreeSale", | ||
| 5480 | "isTwoWay": true, | ||
| 5481 | "sameBaggageForAll": false, | ||
| 5482 | "totalBaggage": false, | ||
| 5483 | "isBlock": true, | ||
| 5484 | "class": "Economy", | ||
| 5485 | "departureSegments": [ | ||
| 5486 | { | ||
| 5487 | "airlineCode": "FZ", | ||
| 5488 | "airlineName": "Fly Dubai", | ||
| 5489 | "flightCode": "FZ1722", | ||
| 5490 | "class": "Economy", | ||
| 5491 | "lugageWeight": 20, | ||
| 5492 | "handLugageWeight": 6, | ||
| 5493 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 5494 | "departureCountryName": "Kazakhstan", | ||
| 5495 | "departureCityName": "Almaty", | ||
| 5496 | "departureAirportCode": "ALA", | ||
| 5497 | "departureAirportName": "Almaty Intl Airport", | ||
| 5498 | "departureTerminalCode": "ALA", | ||
| 5499 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 5500 | "arrivalCountryName": "United Arab Emirates", | ||
| 5501 | "arrivalCityName": "Dubai", | ||
| 5502 | "arrivalAirportCode": "DXB", | ||
| 5503 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 5504 | "arrivalTerminalCode": "DXB3", | ||
| 5505 | "flightDuration": "5h 35m" | ||
| 5506 | } | ||
| 5507 | ], | ||
| 5508 | "returnSegments": [ | ||
| 5509 | { | ||
| 5510 | "airlineCode": "FZ", | ||
| 5511 | "airlineName": "Fly Dubai", | ||
| 5512 | "flightCode": "FZ1721", | ||
| 5513 | "class": "Economy", | ||
| 5514 | "lugageWeight": 20, | ||
| 5515 | "handLugageWeight": 6, | ||
| 5516 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 5517 | "departureCountryName": "United Arab Emirates", | ||
| 5518 | "departureCityName": "Dubai", | ||
| 5519 | "departureAirportCode": "DXB", | ||
| 5520 | "departureAirportName": "Dubai Intl Airport", | ||
| 5521 | "departureTerminalCode": "DXB3", | ||
| 5522 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 5523 | "arrivalCountryName": "Kazakhstan", | ||
| 5524 | "arrivalCityName": "Almaty", | ||
| 5525 | "arrivalAirportCode": "ALA", | ||
| 5526 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 5527 | "arrivalTerminalCode": "ALA", | ||
| 5528 | "flightDuration": "3h 10m" | ||
| 5529 | } | ||
| 5530 | ], | ||
| 5531 | "passengers": [ | ||
| 5532 | { | ||
| 5533 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 5534 | "isAdult": true, | ||
| 5535 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 5536 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 5537 | "forwardBaggages": [ | ||
| 5538 | { | ||
| 5539 | "baggageCode": "INCLUDED", | ||
| 5540 | "description": "20 Kg Included", | ||
| 5541 | "price": 0.0, | ||
| 5542 | "currency": "USD", | ||
| 5543 | "included": true | ||
| 5544 | } | ||
| 5545 | ], | ||
| 5546 | "backwardBaggages": [ | ||
| 5547 | { | ||
| 5548 | "baggageCode": "INCLUDED", | ||
| 5549 | "description": "20 Kg Included", | ||
| 5550 | "price": 0.0, | ||
| 5551 | "currency": "USD", | ||
| 5552 | "included": true | ||
| 5553 | } | ||
| 5554 | ] | ||
| 5555 | }, | ||
| 5556 | { | ||
| 5557 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 5558 | "isAdult": true, | ||
| 5559 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 5560 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 5561 | "forwardBaggages": [ | ||
| 5562 | { | ||
| 5563 | "baggageCode": "INCLUDED", | ||
| 5564 | "description": "20 Kg Included", | ||
| 5565 | "price": 0.0, | ||
| 5566 | "currency": "USD", | ||
| 5567 | "included": true | ||
| 5568 | } | ||
| 5569 | ], | ||
| 5570 | "backwardBaggages": [ | ||
| 5571 | { | ||
| 5572 | "baggageCode": "INCLUDED", | ||
| 5573 | "description": "20 Kg Included", | ||
| 5574 | "price": 0.0, | ||
| 5575 | "currency": "USD", | ||
| 5576 | "included": true | ||
| 5577 | } | ||
| 5578 | ] | ||
| 5579 | } | ||
| 5580 | ] | ||
| 5581 | }, | ||
| 5582 | "extraServices": [], | ||
| 5583 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:24", | ||
| 5584 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 5585 | "sortAirline": "fly dubai", | ||
| 5586 | "sortHotelName": "fujairah rotana resort spa", | ||
| 5587 | "sortDetails": "hb", | ||
| 5588 | "sortPlacement": "ocean view room twin dbl", | ||
| 5589 | "subList": [], | ||
| 5590 | "exchangeRate": 480.0 | ||
| 5591 | }, | ||
| 5592 | { | ||
| 5593 | "id": "tour:001f5ee6-7ea9-4292-a4f4-07444b378692:fc15523b-ccde-44a8-acc4-a75826077fd9:04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 5594 | "priceCurrency": "USD", | ||
| 5595 | "totalPrice": 1897.04, | ||
| 5596 | "agentCommissionPercent": 9.0, | ||
| 5597 | "agentCommissionAmount": 170.73, | ||
| 5598 | "includedExtrasAmount": 0, | ||
| 5599 | "priceDifference": 0, | ||
| 5600 | "hotel": { | ||
| 5601 | "hotelPriceId": "fc15523b-ccde-44a8-acc4-a75826077fd9", | ||
| 5602 | "hotelName": "Fujairah Rotana Resort Spa", | ||
| 5603 | "hotelCode": "ca511ddc-3ad8-46ed-8ad0-c68cc3e8488e", | ||
| 5604 | "nights": 7, | ||
| 5605 | "mealPlan": "HB", | ||
| 5606 | "hotelClass": "5", | ||
| 5607 | "hotelColor": "#000000", | ||
| 5608 | "availabilityType": "OnRequest", | ||
| 5609 | "availableRoomsCount": 0, | ||
| 5610 | "fewRooms": true, | ||
| 5611 | "roomCategoryCode": "8a20d149-2bfc-4563-b43b-1b101410489f", | ||
| 5612 | "roomCategoryName": "Ocean View Room King", | ||
| 5613 | "placementTypeName": "DBL", | ||
| 5614 | "checkInDate": "2024-09-07T00:00:00", | ||
| 5615 | "checkOutDate": "2024-09-14T00:00:00", | ||
| 5616 | "adults": 2, | ||
| 5617 | "children": 0, | ||
| 5618 | "districtUID": "1c118ac0-b44a-4cf5-9229-326a151b13ef", | ||
| 5619 | "districtName": "Al Aqah", | ||
| 5620 | "cityUID": "857a6d87-d1e4-4a17-a867-c65307559222", | ||
| 5621 | "cityName": "Fujairah", | ||
| 5622 | "countryCode": "AE", | ||
| 5623 | "countryName": "United Arab Emirates", | ||
| 5624 | "hasAlcohol": true, | ||
| 5625 | "hasFreeWifi": true, | ||
| 5626 | "hasMetro": false, | ||
| 5627 | "hasPool": true, | ||
| 5628 | "hasMall": false, | ||
| 5629 | "infantMaxAge": 1.99, | ||
| 5630 | "childMinAge": 2.0, | ||
| 5631 | "childMaxAge": 11.99, | ||
| 5632 | "teenMinAge": 0.0, | ||
| 5633 | "teenMaxAge": 0.0, | ||
| 5634 | "adultMinAge": 12.0, | ||
| 5635 | "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %", | ||
| 5636 | "cancellationPolicy": { | ||
| 5637 | "noShowChargeValue": 100.0, | ||
| 5638 | "noShowChargeValueType": "%", | ||
| 5639 | "earlyDepartureChargeValue": 100.0, | ||
| 5640 | "earlyDepartureChargeValueType": "%", | ||
| 5641 | "conditions": [ | ||
| 5642 | { | ||
| 5643 | "timeunits": 4, | ||
| 5644 | "timeunitType": "Day", | ||
| 5645 | "timeOffsetTypeName": "Before Arrival", | ||
| 5646 | "chargeValue": 100.0, | ||
| 5647 | "chargeValueType": "%" | ||
| 5648 | } | ||
| 5649 | ] | ||
| 5650 | } | ||
| 5651 | }, | ||
| 5652 | "flight": { | ||
| 5653 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51", | ||
| 5654 | "departureDate": "2024-09-07T00:00:00", | ||
| 5655 | "returnDate": "2024-09-14T00:00:00", | ||
| 5656 | "departureTicketsLeft": 24, | ||
| 5657 | "returnTicketsLeft": 17, | ||
| 5658 | "departureAvailabilityType": "FreeSale", | ||
| 5659 | "returnAvailabilityType": "FreeSale", | ||
| 5660 | "isTwoWay": true, | ||
| 5661 | "sameBaggageForAll": false, | ||
| 5662 | "totalBaggage": false, | ||
| 5663 | "isBlock": true, | ||
| 5664 | "class": "Economy", | ||
| 5665 | "departureSegments": [ | ||
| 5666 | { | ||
| 5667 | "airlineCode": "FZ", | ||
| 5668 | "airlineName": "Fly Dubai", | ||
| 5669 | "flightCode": "FZ1722", | ||
| 5670 | "class": "Economy", | ||
| 5671 | "lugageWeight": 20, | ||
| 5672 | "handLugageWeight": 6, | ||
| 5673 | "departureFlightDate": "2024-09-07T03:40:00.000", | ||
| 5674 | "departureCountryName": "Kazakhstan", | ||
| 5675 | "departureCityName": "Almaty", | ||
| 5676 | "departureAirportCode": "ALA", | ||
| 5677 | "departureAirportName": "Almaty Intl Airport", | ||
| 5678 | "departureTerminalCode": "ALA", | ||
| 5679 | "arrivalFlightDate": "2024-09-07T07:15:00.000", | ||
| 5680 | "arrivalCountryName": "United Arab Emirates", | ||
| 5681 | "arrivalCityName": "Dubai", | ||
| 5682 | "arrivalAirportCode": "DXB", | ||
| 5683 | "arrivalAirportName": "Dubai Intl Airport", | ||
| 5684 | "arrivalTerminalCode": "DXB3", | ||
| 5685 | "flightDuration": "5h 35m" | ||
| 5686 | } | ||
| 5687 | ], | ||
| 5688 | "returnSegments": [ | ||
| 5689 | { | ||
| 5690 | "airlineCode": "FZ", | ||
| 5691 | "airlineName": "Fly Dubai", | ||
| 5692 | "flightCode": "FZ1721", | ||
| 5693 | "class": "Economy", | ||
| 5694 | "lugageWeight": 20, | ||
| 5695 | "handLugageWeight": 6, | ||
| 5696 | "departureFlightDate": "2024-09-14T21:30:00.000", | ||
| 5697 | "departureCountryName": "United Arab Emirates", | ||
| 5698 | "departureCityName": "Dubai", | ||
| 5699 | "departureAirportCode": "DXB", | ||
| 5700 | "departureAirportName": "Dubai Intl Airport", | ||
| 5701 | "departureTerminalCode": "DXB3", | ||
| 5702 | "arrivalFlightDate": "2024-09-15T02:40:00.000", | ||
| 5703 | "arrivalCountryName": "Kazakhstan", | ||
| 5704 | "arrivalCityName": "Almaty", | ||
| 5705 | "arrivalAirportCode": "ALA", | ||
| 5706 | "arrivalAirportName": "Almaty Intl Airport", | ||
| 5707 | "arrivalTerminalCode": "ALA", | ||
| 5708 | "flightDuration": "3h 10m" | ||
| 5709 | } | ||
| 5710 | ], | ||
| 5711 | "passengers": [ | ||
| 5712 | { | ||
| 5713 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A1", | ||
| 5714 | "isAdult": true, | ||
| 5715 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 5716 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 5717 | "forwardBaggages": [ | ||
| 5718 | { | ||
| 5719 | "baggageCode": "INCLUDED", | ||
| 5720 | "description": "20 Kg Included", | ||
| 5721 | "price": 0.0, | ||
| 5722 | "currency": "USD", | ||
| 5723 | "included": true | ||
| 5724 | } | ||
| 5725 | ], | ||
| 5726 | "backwardBaggages": [ | ||
| 5727 | { | ||
| 5728 | "baggageCode": "INCLUDED", | ||
| 5729 | "description": "20 Kg Included", | ||
| 5730 | "price": 0.0, | ||
| 5731 | "currency": "USD", | ||
| 5732 | "included": true | ||
| 5733 | } | ||
| 5734 | ] | ||
| 5735 | }, | ||
| 5736 | { | ||
| 5737 | "id": "04abb186-80f6-4808-bce4-ae97cef85c51-A2", | ||
| 5738 | "isAdult": true, | ||
| 5739 | "selectedForwardBaggageCode": "INCLUDED", | ||
| 5740 | "selectedBackwardBaggageCode": "INCLUDED", | ||
| 5741 | "forwardBaggages": [ | ||
| 5742 | { | ||
| 5743 | "baggageCode": "INCLUDED", | ||
| 5744 | "description": "20 Kg Included", | ||
| 5745 | "price": 0.0, | ||
| 5746 | "currency": "USD", | ||
| 5747 | "included": true | ||
| 5748 | } | ||
| 5749 | ], | ||
| 5750 | "backwardBaggages": [ | ||
| 5751 | { | ||
| 5752 | "baggageCode": "INCLUDED", | ||
| 5753 | "description": "20 Kg Included", | ||
| 5754 | "price": 0.0, | ||
| 5755 | "currency": "USD", | ||
| 5756 | "included": true | ||
| 5757 | } | ||
| 5758 | ] | ||
| 5759 | } | ||
| 5760 | ] | ||
| 5761 | }, | ||
| 5762 | "extraServices": [], | ||
| 5763 | "cacheKey": "95c7b515fcd541179541465bb57d60e2fdc17c9a89cc489e81b1721dc02bf98a:{5}:i:25", | ||
| 5764 | "sortCheckInOut": "07.09.2024-14.09.2024", | ||
| 5765 | "sortAirline": "fly dubai", | ||
| 5766 | "sortHotelName": "fujairah rotana resort spa", | ||
| 5767 | "sortDetails": "hb", | ||
| 5768 | "sortPlacement": "ocean view room king dbl", | ||
| 5769 | "subList": [], | ||
| 5770 | "exchangeRate": 480.0 | ||
| 5771 | } | ||
| 5772 | ], | ||
| 5773 | "pagingId": "5", | ||
| 5774 | "pageNumber": 1, | ||
| 5775 | "pageCount": 5, | ||
| 5776 | "totalCount": 110, | ||
| 5777 | "error": false | ||
| 5778 | } | ||
| 5779 | {{/code}} | ||
| 5780 | |||
| 5781 | |||
| 5782 | === Schema === | ||
| 5783 | |||
| 5784 | {{success}} | ||
| 5785 | SearchTourPackagesResponse{ | ||
| 5786 | |||
| 5787 | |error|boolean | ||
| 5788 | |errorCode|string | ||
| 5789 | nullable: true | ||
| 5790 | |errorDescription|string | ||
| 5791 | nullable: true | ||
| 5792 | |userErrorDescription|string | ||
| 5793 | nullable: true | ||
| 5794 | |packages|[ | ||
| 5795 | nullable: trueTourPackage{((( | ||
| 5796 | |cacheKey|string | ||
| 5797 | nullable: true | ||
| 5798 | |id|string | ||
| 5799 | nullable: true | ||
| 5800 | |priceCurrency|string | ||
| 5801 | nullable: true | ||
| 5802 | |totalPrice|number($double) | ||
| 5803 | |agentCommissionPercent|number($double) | ||
| 5804 | |agentCommissionAmount|number($double) | ||
| 5805 | |includedExtrasAmount|number($double) | ||
| 5806 | |priceDifference|number($double) | ||
| 5807 | |hotel|PackageHotel{((( | ||
| 5808 | |hotelPriceId|string | ||
| 5809 | nullable: true | ||
| 5810 | |providerId|integer($int32) | ||
| 5811 | |hotelName|string | ||
| 5812 | nullable: true | ||
| 5813 | |hotelCode|string | ||
| 5814 | nullable: true | ||
| 5815 | |nigths|integer($int32) | ||
| 5816 | |mealPlan|string | ||
| 5817 | nullable: true | ||
| 5818 | |hotelClass|string | ||
| 5819 | nullable: true | ||
| 5820 | |availabilityType|RoomAvailabilityTypeEnumstringEnum: | ||
| 5821 | [ OnRequest, FreeSale, StopSale ] | ||
| 5822 | |availableRoomsCount|integer($int32) | ||
| 5823 | |fewRooms|boolean | ||
| 5824 | |roomCategoryCode|string | ||
| 5825 | nullable: true | ||
| 5826 | |roomCategoryName|string | ||
| 5827 | nullable: true | ||
| 5828 | |placementTypeName|string | ||
| 5829 | nullable: true | ||
| 5830 | |placementDescription|string | ||
| 5831 | nullable: true | ||
| 5832 | |checkInDate|string($date-time) | ||
| 5833 | |checkOutDate|string($date-time) | ||
| 5834 | |adults|integer($int32) | ||
| 5835 | |children|integer($int32) | ||
| 5836 | |districtUID|string($uuid) | ||
| 5837 | nullable: true | ||
| 5838 | |districtName|string | ||
| 5839 | nullable: true | ||
| 5840 | |cityUID|string($uuid) | ||
| 5841 | nullable: true | ||
| 5842 | |cityName|string | ||
| 5843 | nullable: true | ||
| 5844 | |countryCode|string | ||
| 5845 | nullable: true | ||
| 5846 | |countryName|string | ||
| 5847 | nullable: true | ||
| 5848 | |hasAlcohol|boolean | ||
| 5849 | |hasFreeWifi|boolean | ||
| 5850 | |hasMetro|boolean | ||
| 5851 | |hasPool|boolean | ||
| 5852 | |hasMall|boolean | ||
| 5853 | |cancellationPolicyDescription|string | ||
| 5854 | nullable: true | ||
| 5855 | |cancellationPolicy|CancellationPolicyExchange{((( | ||
| 5856 | |cancellationPolicyCode|string | ||
| 5857 | nullable: true | ||
| 5858 | |noShowChargeValue|number($double) | ||
| 5859 | nullable: true | ||
| 5860 | |noShowChargeValueType|string | ||
| 5861 | nullable: true | ||
| 5862 | |earlyDepartureChargeValue|number($double) | ||
| 5863 | nullable: true | ||
| 5864 | |earlyDepartureChargeValueType|string | ||
| 5865 | nullable: true | ||
| 5866 | |conditions|[ | ||
| 5867 | nullable: trueCancellationPolicyConditionExchange{((( | ||
| 5868 | |timeunits|integer($int32) | ||
| 5869 | |timeunitType|string | ||
| 5870 | nullable: true | ||
| 5871 | |timeOffsetTypeName|string | ||
| 5872 | nullable: true | ||
| 5873 | |chargeValue|number($double) | ||
| 5874 | nullable: true | ||
| 5875 | |chargeValueType|string | ||
| 5876 | nullable: true | ||
| 5877 | |||
| 5878 | }] | ||
| 5879 | ))) | ||
| 5880 | |||
| 5881 | } | ||
| 5882 | ))) | ||
| 5883 | |||
| 5884 | } | ||
| 5885 | ))) | ||
| 5886 | |flight|PackageFlight{((( | ||
| 5887 | |id|string | ||
| 5888 | nullable: true | ||
| 5889 | |departureDate|string($date-time) | ||
| 5890 | |returnDate|string($date-time) | ||
| 5891 | nullable: true | ||
| 5892 | |departureTicketsLeft|integer($int32) | ||
| 5893 | |returnTicketsLeft|integer($int32) | ||
| 5894 | |departureAvailabilityType|FlightAvailabilityTypestringEnum: | ||
| 5895 | [ OnRequest, FreeSale, FewPlaces, StopSale ] | ||
| 5896 | |returnAvailabilityType|FlightAvailabilityTypestringEnum: | ||
| 5897 | [ OnRequest, FreeSale, FewPlaces, StopSale ] | ||
| 5898 | |isTwoWay|boolean | ||
| 5899 | |departureSegments|[ | ||
| 5900 | nullable: trueFlightSegment{((( | ||
| 5901 | |airlineCode|string | ||
| 5902 | nullable: true | ||
| 5903 | |airlineName|string | ||
| 5904 | nullable: true | ||
| 5905 | |flightCode|string | ||
| 5906 | nullable: true | ||
| 5907 | |class|string | ||
| 5908 | nullable: true | ||
| 5909 | |lugageWeight|number($double) | ||
| 5910 | |handLugageWeight|number($double) | ||
| 5911 | |departureFlightDate|string($date-time) | ||
| 5912 | |departureCountryName|string | ||
| 5913 | nullable: true | ||
| 5914 | |departureCityName|string | ||
| 5915 | nullable: true | ||
| 5916 | |departureAirportCode|string | ||
| 5917 | nullable: true | ||
| 5918 | |departureAirportName|string | ||
| 5919 | nullable: true | ||
| 5920 | |departureTerminalCode|string | ||
| 5921 | nullable: true | ||
| 5922 | |arrivalFlightDate|string($date-time) | ||
| 5923 | |arrivalCountryName|string | ||
| 5924 | nullable: true | ||
| 5925 | |arrivalCityName|string | ||
| 5926 | nullable: true | ||
| 5927 | |arrivalAirportCode|string | ||
| 5928 | nullable: true | ||
| 5929 | |arrivalAirportName|string | ||
| 5930 | nullable: true | ||
| 5931 | |arrivalTerminalCode|string | ||
| 5932 | nullable: true | ||
| 5933 | |flightDuration|string | ||
| 5934 | nullable: true | ||
| 5935 | |baggages|[ | ||
| 5936 | nullable: trueBaggage{((( | ||
| 5937 | |baggageCode|string | ||
| 5938 | nullable: true | ||
| 5939 | |description|string | ||
| 5940 | nullable: true | ||
| 5941 | |price|number($double) | ||
| 5942 | |currency|string | ||
| 5943 | nullable: true | ||
| 5944 | |included|boolean | ||
| 5945 | |||
| 5946 | }] | ||
| 5947 | ))) | ||
| 5948 | |||
| 5949 | }] | ||
| 5950 | ))) | ||
| 5951 | |returnSegments|[ | ||
| 5952 | nullable: trueFlightSegment{((( | ||
| 5953 | |airlineCode|string | ||
| 5954 | nullable: true | ||
| 5955 | |airlineName|string | ||
| 5956 | nullable: true | ||
| 5957 | |flightCode|string | ||
| 5958 | nullable: true | ||
| 5959 | |class|string | ||
| 5960 | nullable: true | ||
| 5961 | |lugageWeight|number($double) | ||
| 5962 | |handLugageWeight|number($double) | ||
| 5963 | |departureFlightDate|string($date-time) | ||
| 5964 | |departureCountryName|string | ||
| 5965 | nullable: true | ||
| 5966 | |departureCityName|string | ||
| 5967 | nullable: true | ||
| 5968 | |departureAirportCode|string | ||
| 5969 | nullable: true | ||
| 5970 | |departureAirportName|string | ||
| 5971 | nullable: true | ||
| 5972 | |departureTerminalCode|string | ||
| 5973 | nullable: true | ||
| 5974 | |arrivalFlightDate|string($date-time) | ||
| 5975 | |arrivalCountryName|string | ||
| 5976 | nullable: true | ||
| 5977 | |arrivalCityName|string | ||
| 5978 | nullable: true | ||
| 5979 | |arrivalAirportCode|string | ||
| 5980 | nullable: true | ||
| 5981 | |arrivalAirportName|string | ||
| 5982 | nullable: true | ||
| 5983 | |arrivalTerminalCode|string | ||
| 5984 | nullable: true | ||
| 5985 | |flightDuration|string | ||
| 5986 | nullable: true | ||
| 5987 | |baggages|[ | ||
| 5988 | nullable: trueBaggage{((( | ||
| 5989 | |baggageCode|string | ||
| 5990 | nullable: true | ||
| 5991 | |description|string | ||
| 5992 | nullable: true | ||
| 5993 | |price|number($double) | ||
| 5994 | |currency|string | ||
| 5995 | nullable: true | ||
| 5996 | |included|boolean | ||
| 5997 | |||
| 5998 | }] | ||
| 5999 | ))) | ||
| 6000 | |||
| 6001 | }] | ||
| 6002 | ))) | ||
| 6003 | |||
| 6004 | } | ||
| 6005 | ))) | ||
| 6006 | |extraServices|[ | ||
| 6007 | nullable: trueHotelExtraServiceBase{((( | ||
| 6008 | |extraServiceCode|string | ||
| 6009 | nullable: true | ||
| 6010 | |extraServiceTypeCode|string | ||
| 6011 | nullable: true | ||
| 6012 | |isMandatory|integer($int32) | ||
| 6013 | |extraServiceName|string | ||
| 6014 | nullable: true | ||
| 6015 | |minimalServiceAmount|number($double) | ||
| 6016 | |includedPriceCode|string | ||
| 6017 | nullable: true | ||
| 6018 | |prices|[ | ||
| 6019 | nullable: trueHotelExtraServicePriceBase{((( | ||
| 6020 | |extraServicePriceCode|string | ||
| 6021 | nullable: true | ||
| 6022 | |displayName|string | ||
| 6023 | nullable: true | ||
| 6024 | |restrictionInfo|string | ||
| 6025 | nullable: true | ||
| 6026 | |additionalInfo|string | ||
| 6027 | nullable: true | ||
| 6028 | |price|number($double) | ||
| 6029 | |extraPrice|number($double) | ||
| 6030 | |currency|string | ||
| 6031 | nullable: true | ||
| 6032 | |||
| 6033 | }] | ||
| 6034 | ))) | ||
| 6035 | |||
| 6036 | }] | ||
| 6037 | ))) | ||
| 6038 | |insurancePrice|InsurancePrice{((( | ||
| 6039 | |name|string | ||
| 6040 | nullable: true | ||
| 6041 | |price|number($double) | ||
| 6042 | |priceSurcarge|number($double) | ||
| 6043 | |actualStartDate|string($date-time) | ||
| 6044 | |actualEndDate|string($date-time) | ||
| 6045 | |optional|boolean | ||
| 6046 | |includedInPackagePrice|boolean | ||
| 6047 | |||
| 6048 | } | ||
| 6049 | ))) | ||
| 6050 | |||
| 6051 | }] | ||
| 6052 | ))) | ||
| 6053 | |pagingId|string | ||
| 6054 | nullable: true | ||
| 6055 | |pageNumber|integer($int64) | ||
| 6056 | |pageCount|integer($int64) | ||
| 6057 | |||
| 6058 | } | ||
| 6059 | {{/success}} | ||
| 6060 | |||
| 6061 | |||
| 6062 | == Definitions == | ||
| 6063 | |||
| 6064 | |||
| 6065 | === **Request Parameters ** === | ||
| 6066 | |||
| 6067 | (% class="table-bordered" %) | ||
| 6068 | |=Key|=Type|=Nullable|=Description | ||
| 6069 | |departureCountryCode|String|No|The ISO 3166-1 alpha-2 code of the departure country. For example, "KZ" for Kazakhstan. | ||
| 6070 | |departureCityUID|String (UUID)|No|The unique identifier of the departure city. This is a UUID, such as "f0ba6324-f337-405c-8cc7-23d62cf664e8". | ||
| 6071 | |arrivalCountryCode|String|No|The ISO 3166-1 alpha-2 code of the arrival country. For example, "AE" for United Arab Emirates. | ||
| 6072 | |adults|Integer|No|The number of adults for the trip. For example, 2 for two adults. | ||
| 6073 | |children|Integer|No|The number of children for the trip. For example, 0 for no children. | ||
| 6074 | |departureDate|String (date-time)|No|The departure date in ISO 8601 format. For example, "2024-05-25T00:00:00" for May 25, 2024. | ||
| 6075 | |returnDate|String (date-time)|No|The return date in ISO 8601 format. For example, "2024-06-01T00:00:00" for June 1, 2024. | ||
| 6076 | |departureAndReturnDaysCount|Integer|No|The total number of days for the departure and return trip. For example, 7 for a week-long trip. | ||
| 6077 | |checkInDate|String (date-time)|No|The check-in date at the hotel in ISO 8601 format. For example, "2024-05-25T00:00:00" for May 25, 2024. | ||
| 6078 | |checkOutDate|String (date-time)|No|The check-out date from the hotel in ISO 8601 format. For example, "2024-06-01T00:00:00" for June 1, 2024. | ||
| 6079 | |checkInAndCheckOutDaysCount|Integer|No|The total number of days for the hotel stay. For example, 7 for a week-long stay. | ||
| 6080 | |directFlightsOnly|Boolean|No|Whether to search for direct flights only. For example, true to only search for direct flights. | ||
| 6081 | |pageRowCount|Integer|No|The number of results to return per page. For example, 1 to return 1 result per page. | ||
| 6082 | |searchCurrency|String|YES|The currency in which the search results should be displayed. For example, "USD" for United States Dollar. You can use this currencies for example - KZT - ₸ • USD - $ • RUB - ₽ • EUR - € • UZS - ЛВ • AZN - ₼. | ||
| 6083 | |||
| 6084 | === **Response Parameters** === | ||
| 6085 | |||
| 6086 | (% class="table-bordered" %) | ||
| 6087 | |=Key|=Type|=Description | ||
| 6088 | |packages|Array|An array of travel packages. Each package includes various details about the package. | ||
| 6089 | |packages[].id|String|A unique identifier for the package. This is used to uniquely identify each package. | ||
| 6090 | |packages[].priceCurrency|String|The currency in which the price is denoted. This could be • KZT - ₸ • USD - $ • RUB - ₽ • EUR - € • UZS - ЛВ • AZN - ₼. | ||
| 6091 | |packages[].totalPrice|Number|The total price of the package. This includes all costs associated with the package. | ||
| 6092 | |packages[].agentCommissionPercent|Number|The commission percentage for the agent. This is the percentage of the total price that the agent receives as commission. | ||
| 6093 | |packages[].agentCommissionAmount|Number|The commission amount for the agent. This is the actual amount the agent receives as commission. | ||
| 6094 | |packages[].includedExtrasAmount|Number|The amount for the included extras. This is the cost of any extra services included in the package. | ||
| 6095 | |packages[].priceDifference|Number|The price difference. This could be a discount or a price increase. | ||
| 6096 | |packages[].hotel|Object|An object containing details about the hotel included in the package. This includes information like the hotel name, class, availability, etc. | ||
| 6097 | |packages[].hotel.hotelPriceId|String|The price ID of the hotel. This is used to uniquely identify the price for the hotel. | ||
| 6098 | |packages[].hotel.hotelName|String|The name of the hotel. This is the actual name of the hotel. | ||
| 6099 | |packages[].hotel.hotelCode|String|The code of the hotel. This is a unique code used to identify the hotel. | ||
| 6100 | |packages[].hotel.nights|Number|The number of nights for the stay. This is the duration of the stay at the hotel. | ||
| 6101 | |packages[].hotel.mealPlan|String|The meal plan for the stay. This could be breakfast included, all inclusive, etc. | ||
| 6102 | |packages[].hotel.hotelClass|String|The class of the hotel. This could be 3-star, 4-star, 5-star, etc. | ||
| 6103 | |packages[].hotel.hotelColor|String|The color associated with the hotel. This could be used for categorization or visualization purposes. | ||
| 6104 | |packages[].hotel.availabilityType|String|The availability type of the hotel. This could be available, sold out, etc. | ||
| 6105 | |packages[].hotel.availableRoomsCount|Number|The count of available rooms. This is the number of rooms that are currently available at the hotel. | ||
| 6106 | |packages[].hotel.fewRooms|Boolean|A boolean indicating if there are few rooms left. If true, it means that there are only a few rooms left. | ||
| 6107 | |packages[].hotel.roomCategoryCode|String|The code of the room category. This is a unique code used to identify the room category. | ||
| 6108 | |packages[].hotel.roomCategoryName|String|The name of the room category. This is the actual name of the room category. | ||
| 6109 | |packages[].hotel.placementTypeName|String|The name of the placement type. This could be sea view, garden view, etc. | ||
| 6110 | |packages[].hotel.placementDescription|String|The description of the placement. This provides more details about the placement type. | ||
| 6111 | |packages[].hotel.checkInDate|String|The check-in date. This is the date when the stay at the hotel begins. | ||
| 6112 | |packages[].hotel.checkOutDate|String|The check-out date. This is the date when the stay at the hotel ends. | ||
| 6113 | |packages[].hotel.adults|Number|The number of adults. This is the number of adults that will be staying at the hotel. | ||
| 6114 | |packages[].hotel.children|Number|The number of children. This is the number of children that will be staying at the hotel. | ||
| 6115 | |packages[].hotel.districtUID|String|The UID of the district. This is a unique identifier for the district where the hotel is located. | ||
| 6116 | |packages[].hotel.districtName|String|The name of the district. This is the actual name of the district where the hotel is located. | ||
| 6117 | |packages[].hotel.cityUID|String|The UID of the city. This is a unique identifier for the city where the hotel is located. | ||
| 6118 | |packages[].hotel.cityName|String|The name of the city. This is the actual name of the city where the hotel is located. | ||
| 6119 | |packages[].hotel.countryCode|String|The code of the country. This is a unique code used to identify the country where the hotel is located. | ||
| 6120 | |packages[].hotel.countryName|String|The name of the country. This is the actual name of the country where the hotel is located. | ||
| 6121 | |packages[].hotel.hasAlcohol|Boolean|A boolean indicating if alcohol is available. If true, it means that alcohol is available at the hotel. | ||
| 6122 | |packages[].hotel.hasFreeWifi|Boolean|A boolean indicating if free Wi-Fi is available. If true, it means that free Wi-Fi is available at the hotel. | ||
| 6123 | |packages[].hotel.hasMetro|Boolean|A boolean indicating if metro is available. If true, it means that there is a metro station near the hotel. | ||
| 6124 | |packages[].hotel.hasPool|Boolean|A boolean indicating if a pool is available. If true, it means that the hotel has a pool. | ||
| 6125 | |packages[].hotel.hasMall|Boolean|A boolean indicating if a mall is available. If true, it means that there is a mall near the hotel. | ||
| 6126 | |packages[].hotel.infantMaxAge|Number|The maximum age for an infant. This is the maximum age at which a person is considered an infant. | ||
| 6127 | |packages[].hotel.childMinAge|Number|The minimum age for a child. This is the minimum age at which a person is considered a child. | ||
| 6128 | |packages[].hotel.childMaxAge|Number|The maximum age for a child. This is the maximum age at which a person is considered a child. | ||
| 6129 | |packages[].hotel.teenMinAge|Number|The minimum age for a teen. This is the minimum age at which a person is considered a teen. | ||
| 6130 | |packages[].hotel.teenMaxAge|Number|The maximum age for a teen. This is the maximum age at which a person is considered a teen. | ||
| 6131 | |packages[].hotel.adultMinAge|Number|The minimum age for an adult. This is the minimum age at which a person is considered an adult. | ||
| 6132 | |packages[].hotel.cancellationPolicyDescription|String|The description of the cancellation policy. This provides more details about the cancellation policy of the hotel. | ||
| 6133 | |packages[].hotel.cancellationPolicy|Object|An object containing details about the cancellation policy. This includes information like the cancellation deadline, cancellation fee, etc. | ||
| 6134 | |packages[].flight|Object|An object containing details about the flight included in the package. This includes information like the flight ID, departure date, return date, etc. | ||
| 6135 | |packages[].flight.id|String|The ID of the flight. This is used to uniquely identify the flight. | ||
| 6136 | |packages[].flight.departureDate|String|The departure date of the flight. This is the date when the flight departs. | ||
| 6137 | |packages[].flight.returnDate|String|The return date of the flight. This is the date when the flight returns. | ||
| 6138 | |packages[].flight.departureTicketsLeft|Number|The number of departure tickets left. This is the number of tickets that are still available for the departure flight. | ||
| 6139 | |packages[].flight.returnTicketsLeft|Number|The number of return tickets left. This is the number of tickets that are still available for the return flight. | ||
| 6140 | |packages[].flight.departureAvailabilityType|String|The availability type of the departure flight. This could be available, sold out, etc. | ||
| 6141 | |packages[].flight.returnAvailabilityType|String|The availability type of the return flight. This could be available, sold out, etc. | ||
| 6142 | |packages[].flight.isTwoWay|Boolean|A boolean indicating if the flight is two-way. If true, it means that the flight includes both departure and return. | ||
| 6143 | |packages[].flight.sameBaggageForAll|Boolean|A boolean indicating if the same baggage is for all. If true, it means that the same baggage allowance applies to all passengers. | ||
| 6144 | |packages[].flight.totalBaggage|Boolean|A boolean indicating if total baggage is included. If true, it means that the total baggage allowance is included in the price. | ||
| 6145 | |packages[].flight.isBlock|Boolean|A boolean indicating if the flight is block or not. If true, it means that the flight is currently block of flights | ||
| 6146 | |packages[].flight.class|String|The class of the flight. This could be economy, business, first class, etc. | ||
| 6147 | |packages[].flight.departureSegments|Array|An array containing details about the departure segments. Each segment includes information like the departure airport, arrival airport, departure time, arrival time, etc. | ||
| 6148 | |packages[].flight.returnSegments|Array|An array containing details about the return segments. Each segment includes information like the departure airport, arrival airport, departure time, arrival time, etc. | ||
| 6149 | |packages[].flight.passengers|Array|An array containing details about the passengers. Each passenger includes information like the passenger type, baggage allowance, etc. | ||
| 6150 | |packages[].extraServices|Array|An array of any extra services included in the package. Each service includes information like the service name, service price, etc. | ||
| 6151 | |packages[].insurancePrice|Object|An object containing details about the insurance price included in the package. This includes information like the insurance type, insurance price, etc. | ||
| 6152 | |packages[].cacheKey|String|The cache key. This is used to cache the package details for faster retrieval. | ||
| 6153 | |packages[].sortCheckInOut|String|The check-in and check-out dates for sorting. This is used to sort the packages based on the check-in and check-out dates. | ||
| 6154 | |packages[].sortAirline|String|The airline for sorting. This is used to sort the packages based on the airline. | ||
| 6155 | |packages[].sortHotelName|String|The hotel name for sorting. This is used to sort the packages based on the hotel name. | ||
| 6156 | |packages[].sortDetails|String|The details for sorting. This is used to sort the packages based on various details. | ||
| 6157 | |packages[].sortPlacement|String|The placement for sorting. This is used to sort the packages based on the placement. | ||
| 6158 | |pagingId|String|An identifier for the page. This is used to uniquely identify each page of results. | ||
| 6159 | |pageNumber|Number|The current page number. This is the number of the current page of results. | ||
| 6160 | |pageCount|Number|The total number of pages. This is the total number of pages of results. | ||
| 6161 | |totalCount|Number|The total count of packages. This is the total number of packages in all pages of results. | ||
| 6162 | |error|Boolean|A boolean indicating whether there was an error. If true, it means that there was an error in retrieving the packages. | ||
| 6163 | |((( | ||
| 6164 | exchangeRate | ||
| 6165 | )))|Integer|For example "exchangeRate": 480.0 it means that exchange rate is 480 from KZT to USD , 1 USD-480KZT | ||
| 6166 | |||
| 6167 | ==== first request ==== | ||
| 6168 | |||
| 6169 | {{code language="Json"}} | ||
| 6170 | { | ||
| 6171 | "pagingId": "", | ||
| 6172 | "pageNumber": 1, | ||
| 6173 | "pageRowCount":10 | ||
| 6174 | } | ||
| 6175 | {{/code}} | ||
| 6176 | |||
| 6177 | While making first search request, paging id should be empty, "pageNumber": and "pageRowCount":10 means that, in response there will be returned maximum 10 packages per page. | ||
| 6178 | |||
| 6179 | |||
| 6180 | ==== Request with caching ==== | ||
| 6181 | |||
| 6182 | after receiving response from first search request, in the end we can see pagingId- number, wchich we can use for caching, and (pageinatoin) for switch pagenumbers, and displaying results as we whant. For cleaning cache, it's important to make new request without cllear pagingID, like this "pagingId": "", | ||
| 6183 | |||
| 6184 | {{code language="Json"}} | ||
| 6185 | { | ||
| 6186 | "pagingId": "80", | ||
| 6187 | "pageNumber": 1, | ||
| 6188 | "pageRowCount":10 | ||
| 6189 | } | ||
| 6190 | {{/code}} | ||
| 6191 | |||
| 6192 | |||
| 6193 | **Overview:** The Paging and Caching mechanism is designed to efficiently manage data retrieval in a paginated format. This mechanism is essential for handling large datasets by dividing the data into manageable pages, thereby optimizing the performance and scalability of data retrieval operations. | ||
| 6194 | |||
| 6195 | **Initial Request:** | ||
| 6196 | |||
| 6197 | * **Purpose**: The first request initiates the paging process and is designed to fetch the initial set of data without utilizing a pagingId. | ||
| 6198 | * **Parameters**: | ||
| 6199 | ** pagingId: Should be set to an empty string ("") to indicate that this is the initial request. | ||
| 6200 | ** pageNumber: Indicates the specific page of data to retrieve, starting with 1. | ||
| 6201 | ** pageRowCount: Specifies the number of results to be included on each page. | ||
| 6202 | |||
| 6203 | **Example - First Request**: | ||
| 6204 | |||
| 6205 | {{{{ | ||
| 6206 | "pagingId": "", | ||
| 6207 | "pageNumber": 1, | ||
| 6208 | "pageRowCount": 10 | ||
| 6209 | } | ||
| 6210 | }}} | ||
| 6211 | |||
| 6212 | |||
| 6213 | **Subsequent Requests with Caching:** | ||
| 6214 | |||
| 6215 | * **Purpose**: Following the initial data retrieval, subsequent requests utilize the pagingId obtained from the previous response. This pagingId serves as a cache identifier, enabling the system to quickly access the relevant dataset and efficiently paginate through the data. | ||
| 6216 | * **Cache Utilization**: | ||
| 6217 | ** Upon receiving a response, a pagingId value is provided. This pagingId should be used in subsequent requests to reference the cached data. | ||
| 6218 | ** To navigate through the dataset, adjust the pageNumber while keeping the pagingId constant. | ||
| 6219 | ** To refresh the dataset and clear the cache, initiate a new request without a pagingId. | ||
| 6220 | |||
| 6221 | **Example - Request with Caching**: | ||
| 6222 | |||
| 6223 | {{{ { | ||
| 6224 | "pagingId": "80", | ||
| 6225 | "pageNumber": 2, // Adjusted to fetch the next page | ||
| 6226 | "pageRowCount": 10 | ||
| 6227 | } | ||
| 6228 | }}} | ||
| 6229 | |||
| 6230 | |||
| 6231 | **Cache Management:** | ||
| 6232 | |||
| 6233 | * Clearing the cache and fetching a fresh set of data requires sending a new request with the pagingId parameter omitted or set to an empty string. This action resets the pagination and caching context. | ||
| 6234 | |||
| 6235 | **Implementation Notes**: | ||
| 6236 | |||
| 6237 | * The paging and caching mechanism significantly enhances data retrieval efficiency by minimizing server load and optimizing response times. | ||
| 6238 | * Developers should ensure that the pagingId is correctly managed between requests to maintain session continuity and data consistency. | ||
| 6239 | |||
| 6240 | This documentation outlines the procedural framework for implementing a robust paging and caching strategy within data retrieval systems, detailing parameter usage and operational best practices for both initial and subsequent data fetch operations. | ||
| 6241 | |||
| 6242 | |||
| 6243 | === search parameter options === | ||
| 6244 | |||
| 6245 | in the request body it's available to filter search results with parameters. parameter examples: | ||
| 6246 | |||
| 6247 | {{code language="Json"}} | ||
| 6248 | { "totalPriceFrom": 500, | ||
| 6249 | "totalPriceTo": 10000, | ||
| 6250 | "hotelTypes": [ | ||
| 6251 | "CityHotel", | ||
| 6252 | "BeachHotel", | ||
| 6253 | "SecondLineBeach" | ||
| 6254 | ], | ||
| 6255 | "hotelClasses": [ | ||
| 6256 | "1", | ||
| 6257 | "2", | ||
| 6258 | "3", | ||
| 6259 | "4", | ||
| 6260 | "5", | ||
| 6261 | "6" | ||
| 6262 | ], | ||
| 6263 | "hotelServices": [ | ||
| 6264 | "HasAlcohol", | ||
| 6265 | "HasFreeWifi", | ||
| 6266 | "HasMetro", | ||
| 6267 | "HasPool", | ||
| 6268 | "HasMall" | ||
| 6269 | ], | ||
| 6270 | "mealPlans": [ | ||
| 6271 | "RO", | ||
| 6272 | "BB", | ||
| 6273 | "HB", | ||
| 6274 | "FB", | ||
| 6275 | "AL" | ||
| 6276 | ] | ||
| 6277 | } | ||
| 6278 | {{/code}} | ||
| 6279 | |||
| 6280 | |||
| 6281 | 1. **RO (Room Only)**: This plan includes only the accommodation with no meals provided. Guests will need to arrange their own meals either outside the hotel or by purchasing them separately within the hotel. | ||
| 6282 | 1. **BB (Bed and Breakfast)**: This plan includes accommodation along with breakfast served at the hotel. No other meals are included, which means guests need to arrange their own lunch and dinner. | ||
| 6283 | 1. **HB (Half Board)**: This meal plan includes accommodation along with two meals a day, typically breakfast and either lunch or dinner. Guests can choose which two meals are most convenient for them based on the options provided by the hotel. | ||
| 6284 | 1. **FB (Full Board)**: Under the full board plan, accommodation and all three meals (breakfast, lunch, and dinner) are included. This plan is convenient for guests who do not wish to worry about arranging meals during their stay. | ||
| 6285 | 1. **AL (All Inclusive)**: The all-inclusive meal plan includes accommodation, all meals (breakfast, lunch, dinner), and usually includes a range of snacks and beverages (both alcoholic and non-alcoholic). It is the most comprehensive meal plan, offering the greatest convenience and predictability in costs. | ||
| 6286 | |||
| 6287 | == Important == | ||
| 6288 | |||
| 6289 | {{error}} | ||
| 6290 | === Implementing Authorization in Subsequent Requests === | ||
| 6291 | |||
| 6292 | For every API request after the initial authentication, it's crucial to include the authorization token in the request header. This ensures your requests are authorized and can access the necessary resources. Here's how to properly include your token: | ||
| 6293 | |||
| 6294 | * **Header Key:** Authorization | ||
| 6295 | * **Header Value:** Bearer [Your Token Here] - Use the bearer token provided in the initial authentication response. The authorization type should be specified as Bearer Token. | ||
| 6296 | |||
| 6297 | Additionally, to ensure your requests are properly formatted and recognized, include the following headers: | ||
| 6298 | |||
| 6299 | * **Content-Type:** Specify this header as application/json to indicate the format of the request body. | ||
| 6300 | * **Header Key:** X-nugios-timezone | ||
| 6301 | * **Header Value:** 240 - Adjust this value to match your local timezone offset in minutes. | ||
| 6302 | |||
| 6303 | Incorporating these headers with their respective values is essential for the successful processing of your API requests. | ||
| 6304 | {{/error}} | ||
| 6305 | |||
| 6306 | |||
| 6307 | |||
| 6308 | (% class="box errormessage" %) | ||
| 6309 | ((( | ||
| 6310 | Tour package requirements can vary based on the destination country, necessitating the inclusion of additional mandatory services such as Visa, Insurance, etc. When querying for tour packages through the API, the response payload will dynamically include fields indicating whether these services are mandatory. For instance, the API may return a structure like this: | ||
| 6311 | |||
| 6312 | [[image:https://xwiki.nugios.com/xwiki/bin/download/APIs/Online%20API/TourPackages/WebHome/1713191255012-154.png?rev=1.1||alt="1713191255012-154.png"]] | ||
| 6313 | |||
| 6314 | in the given example it means that insurance service is mandatory for the tourpackage. | ||
| 6315 | ))) |