Last modified by Giorgi Mdivnishvili on 2024/07/11 12:45

From version 3.1
edited by Giorgi Mdivnishvili
on 2024/04/11 09:33
Change comment: There is no comment for this version
To version 13.2
edited by Giorgi Mdivnishvili
on 2024/04/11 17:38
Change comment: There is no comment for this version

Summary

Details

Page properties
Title
... ... @@ -1,1 +1,1 @@
1 -SearchTourPackages - Basic version
1 +SearchTourPackages - Basic Version
Content
... ... @@ -6,11 +6,32 @@
6 6  
7 7  = Method Description =
8 8  
9 -Tour package mean, tour with hotel and flight together. Using this method gives data about full package availability with flight and hotel options.
10 10  
11 -It's possible to receive data as current dates, also in date ranges using parameter  "stayDays": 0,   "stayDaysTo": 0. the maximum difference between the days can be 7. Below you can see examples.
10 +=== Method Overview: Streamlined Tour Package Discovery and Booking ===
12 12  
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 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 +
14 14  == Endpoint URL - [POST] ==
15 15  
16 16  {{info}}
... ... @@ -46,7 +46,35 @@
46 46  }
47 47  {{/code}}
48 48  
70 +== Request example for 2Adults 2Child ==
49 49  
72 +{{code language="Json"}}
73 +{
74 + "departureCountryCode": "KZ",
75 + "departureCityUID": "f0ba6324-f337-405c-8cc7-23d62cf664e8",
76 + "arrivalCountryCode": "AE",
77 + "adults": 2,
78 + "children": 2,
79 + "childrenAges": [
80 + 4,
81 + 8
82 + ],
83 + "departureDate": "2024-05-26T00:00:00",
84 + "returnDate": "2024-06-02T00:00:00",
85 + "departureAndReturnDaysCount": 7,
86 + "checkInDate": "2024-05-26T00:00:00",
87 + "checkOutDate": "2024-06-02T00:00:00",
88 + "checkInAndCheckOutDaysCount": 7,
89 + "directFlightsOnly": true,
90 + "searchCurrency": "USD",
91 +
92 + "pagingId": "",
93 + "pageNumber": 1,
94 + "pageRowCount":5
95 +}
96 +{{/code}}
97 +
98 +
50 50  == Response Body ==
51 51  
52 52  {{code language="json"}}
... ... @@ -232,7 +232,7 @@
232 232  {
233 233   "packages": [
234 234   {
235 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:3a85de4a-96e0-4ca8-b116-412a2a5c6bd3:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
284 + "id": "tour:556ce3c2-4062-4181-9970-f41e1aeb3b8b:ce81c22f-7d91-4237-9a2a-43c4c4bcb62f:1d8793e6-346e-4b5c-933f-3d8637684d7e",
236 236   "priceCurrency": "USD",
237 237   "totalPrice": 909.78,
238 238   "agentCommissionPercent": 0.0,
... ... @@ -240,7 +240,7 @@
240 240   "includedExtrasAmount": 0,
241 241   "priceDifference": 0,
242 242   "hotel": {
243 - "hotelPriceId": "3a85de4a-96e0-4ca8-b116-412a2a5c6bd3",
292 + "hotelPriceId": "ce81c22f-7d91-4237-9a2a-43c4c4bcb62f",
244 244   "hotelName": "CityMax Sharjah",
245 245   "hotelCode": "CMAXBSHJNUG",
246 246   "nigths": 7,
... ... @@ -293,7 +293,7 @@
293 293   }
294 294   },
295 295   "flight": {
296 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
345 + "id": "1d8793e6-346e-4b5c-933f-3d8637684d7e",
297 297   "departureDate": "2024-05-25T00:00:00.000",
298 298   "returnDate": "2024-06-01T00:00:00.000",
299 299   "departureTicketsLeft": 48,
... ... @@ -353,7 +353,7 @@
353 353   ],
354 354   "passengers": [
355 355   {
356 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
405 + "id": "1d8793e6-346e-4b5c-933f-3d8637684d7e-A1",
357 357   "isAdult": true,
358 358   "selectedForwardBaggageCode": "INCLUDED",
359 359   "selectedBackwardBaggageCode": "INCLUDED",
... ... @@ -377,7 +377,7 @@
377 377   ]
378 378   },
379 379   {
380 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
429 + "id": "1d8793e6-346e-4b5c-933f-3d8637684d7e-A2",
381 381   "isAdult": true,
382 382   "selectedForwardBaggageCode": "INCLUDED",
383 383   "selectedBackwardBaggageCode": "INCLUDED",
... ... @@ -411,4483 +411,17 @@
411 411   "optional": false,
412 412   "includedInPackagePrice": true
413 413   },
414 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:1",
463 + "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{9}:i:1",
415 415   "sortCheckInOut": "25.05.2024-01.06.2024",
416 416   "sortAirline": "fly dubai",
417 417   "sortHotelName": "citymax sharjah",
418 418   "sortDetails": "bb",
419 419   "sortPlacement": "standard room 2 adults"
420 - },
421 - {
422 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:8a3333d9-d194-4ddc-a248-1c426455ff2c:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
423 - "priceCurrency": "USD",
424 - "totalPrice": 915.64,
425 - "agentCommissionPercent": 0.0,
426 - "agentCommissionAmount": 0.0,
427 - "includedExtrasAmount": 0,
428 - "priceDifference": 0,
429 - "hotel": {
430 - "hotelPriceId": "8a3333d9-d194-4ddc-a248-1c426455ff2c",
431 - "hotelName": "Super 8 by Wyndham Dubai",
432 - "hotelCode": "b2cbbd4b-5723-4ca0-a390-94c541bb8e5e",
433 - "nigths": 7,
434 - "mealPlan": "RO",
435 - "hotelClass": "2",
436 - "hotelColor": "#000000",
437 - "availabilityType": "FreeSale",
438 - "availableRoomsCount": 0,
439 - "fewRooms": true,
440 - "roomCategoryCode": "c1c63fa2-bb58-4604-8496-a2b76627214d",
441 - "roomCategoryName": "Superior room souk view",
442 - "placementTypeName": "DBL",
443 - "checkInDate": "2024-05-25T00:00:00.000",
444 - "checkOutDate": "2024-06-01T00:00:00.000",
445 - "adults": 2,
446 - "children": 0,
447 - "districtUID": "aaff2238-fa72-4900-83f8-a16990415547",
448 - "districtName": "Deira",
449 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
450 - "cityName": "Dubai",
451 - "countryCode": "AE",
452 - "countryName": "United Arab Emirates",
453 - "hasAlcohol": false,
454 - "hasFreeWifi": true,
455 - "hasMetro": false,
456 - "hasPool": false,
457 - "hasMall": false,
458 - "infantMaxAge": 5.99,
459 - "childMinAge": 6.0,
460 - "childMaxAge": 11.99,
461 - "teenMinAge": 0.0,
462 - "teenMaxAge": 0.0,
463 - "adultMinAge": 12.0,
464 - "cancellationPolicyDescription": "Cancellation Policy: 1 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %",
465 - "cancellationPolicy": {
466 - "noShowChargeValue": 100.0,
467 - "noShowChargeValueType": "%",
468 - "earlyDepartureChargeValue": 100.0,
469 - "earlyDepartureChargeValueType": "%",
470 - "conditions": [
471 - {
472 - "timeunits": 1,
473 - "timeunitType": "Day",
474 - "timeOffsetTypeName": "Before Arrival",
475 - "chargeValue": 1.0,
476 - "chargeValueType": "Night"
477 - }
478 - ]
479 - }
480 - },
481 - "flight": {
482 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
483 - "departureDate": "2024-05-25T00:00:00.000",
484 - "returnDate": "2024-06-01T00:00:00.000",
485 - "departureTicketsLeft": 48,
486 - "returnTicketsLeft": 33,
487 - "departureAvailabilityType": "FreeSale",
488 - "returnAvailabilityType": "FreeSale",
489 - "isTwoWay": true,
490 - "sameBaggageForAll": false,
491 - "totalBaggage": false,
492 - "isBlock": true,
493 - "class": "Economy",
494 - "departureSegments": [
495 - {
496 - "airlineCode": "FZ",
497 - "airlineName": "Fly Dubai",
498 - "flightCode": "FZ1722",
499 - "class": "Economy",
500 - "lugageWeight": 20,
501 - "handLugageWeight": 6,
502 - "departureFlightDate": "2024-05-25T03:35:00.000",
503 - "departureCountryName": "Kazakhstan",
504 - "departureCityName": "Almaty",
505 - "departureAirportCode": "ALA",
506 - "departureAirportName": "Almaty Intl Airport",
507 - "departureTerminalCode": "ALA",
508 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
509 - "arrivalCountryName": "United Arab Emirates",
510 - "arrivalCityName": "Dubai",
511 - "arrivalAirportCode": "DXB",
512 - "arrivalAirportName": "Dubai Intl Airport",
513 - "arrivalTerminalCode": "DXB3",
514 - "flightDuration": "5h 35m"
515 - }
516 - ],
517 - "returnSegments": [
518 - {
519 - "airlineCode": "FZ",
520 - "airlineName": "Fly Dubai",
521 - "flightCode": "FZ1721",
522 - "class": "Economy",
523 - "lugageWeight": 20,
524 - "handLugageWeight": 6,
525 - "departureFlightDate": "2024-06-01T21:25:00.000",
526 - "departureCountryName": "United Arab Emirates",
527 - "departureCityName": "Dubai",
528 - "departureAirportCode": "DXB",
529 - "departureAirportName": "Dubai Intl Airport",
530 - "departureTerminalCode": "DXB3",
531 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
532 - "arrivalCountryName": "Kazakhstan",
533 - "arrivalCityName": "Almaty",
534 - "arrivalAirportCode": "ALA",
535 - "arrivalAirportName": "Almaty Intl Airport",
536 - "arrivalTerminalCode": "ALA",
537 - "flightDuration": "3h 10m"
538 - }
539 - ],
540 - "passengers": [
541 - {
542 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
543 - "isAdult": true,
544 - "selectedForwardBaggageCode": "INCLUDED",
545 - "selectedBackwardBaggageCode": "INCLUDED",
546 - "forwardBaggages": [
547 - {
548 - "baggageCode": "INCLUDED",
549 - "description": "20 Kg Included",
550 - "price": 0.0,
551 - "currency": "USD",
552 - "included": true
553 - }
554 - ],
555 - "backwardBaggages": [
556 - {
557 - "baggageCode": "INCLUDED",
558 - "description": "20 Kg Included",
559 - "price": 0.0,
560 - "currency": "USD",
561 - "included": true
562 - }
563 - ]
564 - },
565 - {
566 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
567 - "isAdult": true,
568 - "selectedForwardBaggageCode": "INCLUDED",
569 - "selectedBackwardBaggageCode": "INCLUDED",
570 - "forwardBaggages": [
571 - {
572 - "baggageCode": "INCLUDED",
573 - "description": "20 Kg Included",
574 - "price": 0.0,
575 - "currency": "USD",
576 - "included": true
577 - }
578 - ],
579 - "backwardBaggages": [
580 - {
581 - "baggageCode": "INCLUDED",
582 - "description": "20 Kg Included",
583 - "price": 0.0,
584 - "currency": "USD",
585 - "included": true
586 - }
587 - ]
588 - }
589 - ]
590 - },
591 - "extraServices": [],
592 - "insurancePrice": {
593 - "name": "Medical INS (N10000)",
594 - "price": 35.84,
595 - "actualStartDate": "2024-05-25T00:00:00.000",
596 - "actualEndDate": "2024-06-01T00:00:00.000",
597 - "optional": false,
598 - "includedInPackagePrice": true
599 - },
600 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:2",
601 - "sortCheckInOut": "25.05.2024-01.06.2024",
602 - "sortAirline": "fly dubai",
603 - "sortHotelName": "super 8 by wyndham dubai",
604 - "sortDetails": "ro",
605 - "sortPlacement": "superior room souk view dbl"
606 - },
607 - {
608 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:5407fa92-2e95-4c8b-9934-c9c15a289a31:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
609 - "priceCurrency": "USD",
610 - "totalPrice": 929.99,
611 - "agentCommissionPercent": 0.0,
612 - "agentCommissionAmount": 0.0,
613 - "includedExtrasAmount": 0,
614 - "priceDifference": 0,
615 - "hotel": {
616 - "hotelPriceId": "5407fa92-2e95-4c8b-9934-c9c15a289a31",
617 - "hotelName": "Days By Wyndham Dubai Deira Hotel",
618 - "hotelCode": "75a4708c-1002-4330-b9d7-027a36515ff1",
619 - "nigths": 7,
620 - "mealPlan": "RO",
621 - "hotelClass": "3",
622 - "hotelColor": "#000000",
623 - "availabilityType": "FreeSale",
624 - "availableRoomsCount": 0,
625 - "fewRooms": true,
626 - "roomCategoryCode": "d0f5631f-aefd-4ddc-8f90-9ae0c18730af",
627 - "roomCategoryName": "Superior City View King",
628 - "placementTypeName": "DBL",
629 - "checkInDate": "2024-05-25T00:00:00.000",
630 - "checkOutDate": "2024-06-01T00:00:00.000",
631 - "adults": 2,
632 - "children": 0,
633 - "districtUID": "aaff2238-fa72-4900-83f8-a16990415547",
634 - "districtName": "Deira",
635 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
636 - "cityName": "Dubai",
637 - "countryCode": "AE",
638 - "countryName": "United Arab Emirates",
639 - "hasAlcohol": false,
640 - "hasFreeWifi": true,
641 - "hasMetro": true,
642 - "hasPool": false,
643 - "hasMall": false,
644 - "infantMaxAge": 5.99,
645 - "childMinAge": 6.0,
646 - "childMaxAge": 11.99,
647 - "teenMinAge": 0.0,
648 - "teenMaxAge": 0.0,
649 - "adultMinAge": 12.0,
650 - "cancellationPolicyDescription": "Cancellation Policy: 1 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %",
651 - "cancellationPolicy": {
652 - "noShowChargeValue": 100.0,
653 - "noShowChargeValueType": "%",
654 - "earlyDepartureChargeValue": 100.0,
655 - "earlyDepartureChargeValueType": "%",
656 - "conditions": [
657 - {
658 - "timeunits": 1,
659 - "timeunitType": "Day",
660 - "timeOffsetTypeName": "Before Arrival",
661 - "chargeValue": 1.0,
662 - "chargeValueType": "Night"
663 - }
664 - ]
665 - }
666 - },
667 - "flight": {
668 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
669 - "departureDate": "2024-05-25T00:00:00.000",
670 - "returnDate": "2024-06-01T00:00:00.000",
671 - "departureTicketsLeft": 48,
672 - "returnTicketsLeft": 33,
673 - "departureAvailabilityType": "FreeSale",
674 - "returnAvailabilityType": "FreeSale",
675 - "isTwoWay": true,
676 - "sameBaggageForAll": false,
677 - "totalBaggage": false,
678 - "isBlock": true,
679 - "class": "Economy",
680 - "departureSegments": [
681 - {
682 - "airlineCode": "FZ",
683 - "airlineName": "Fly Dubai",
684 - "flightCode": "FZ1722",
685 - "class": "Economy",
686 - "lugageWeight": 20,
687 - "handLugageWeight": 6,
688 - "departureFlightDate": "2024-05-25T03:35:00.000",
689 - "departureCountryName": "Kazakhstan",
690 - "departureCityName": "Almaty",
691 - "departureAirportCode": "ALA",
692 - "departureAirportName": "Almaty Intl Airport",
693 - "departureTerminalCode": "ALA",
694 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
695 - "arrivalCountryName": "United Arab Emirates",
696 - "arrivalCityName": "Dubai",
697 - "arrivalAirportCode": "DXB",
698 - "arrivalAirportName": "Dubai Intl Airport",
699 - "arrivalTerminalCode": "DXB3",
700 - "flightDuration": "5h 35m"
701 - }
702 - ],
703 - "returnSegments": [
704 - {
705 - "airlineCode": "FZ",
706 - "airlineName": "Fly Dubai",
707 - "flightCode": "FZ1721",
708 - "class": "Economy",
709 - "lugageWeight": 20,
710 - "handLugageWeight": 6,
711 - "departureFlightDate": "2024-06-01T21:25:00.000",
712 - "departureCountryName": "United Arab Emirates",
713 - "departureCityName": "Dubai",
714 - "departureAirportCode": "DXB",
715 - "departureAirportName": "Dubai Intl Airport",
716 - "departureTerminalCode": "DXB3",
717 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
718 - "arrivalCountryName": "Kazakhstan",
719 - "arrivalCityName": "Almaty",
720 - "arrivalAirportCode": "ALA",
721 - "arrivalAirportName": "Almaty Intl Airport",
722 - "arrivalTerminalCode": "ALA",
723 - "flightDuration": "3h 10m"
724 - }
725 - ],
726 - "passengers": [
727 - {
728 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
729 - "isAdult": true,
730 - "selectedForwardBaggageCode": "INCLUDED",
731 - "selectedBackwardBaggageCode": "INCLUDED",
732 - "forwardBaggages": [
733 - {
734 - "baggageCode": "INCLUDED",
735 - "description": "20 Kg Included",
736 - "price": 0.0,
737 - "currency": "USD",
738 - "included": true
739 - }
740 - ],
741 - "backwardBaggages": [
742 - {
743 - "baggageCode": "INCLUDED",
744 - "description": "20 Kg Included",
745 - "price": 0.0,
746 - "currency": "USD",
747 - "included": true
748 - }
749 - ]
750 - },
751 - {
752 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
753 - "isAdult": true,
754 - "selectedForwardBaggageCode": "INCLUDED",
755 - "selectedBackwardBaggageCode": "INCLUDED",
756 - "forwardBaggages": [
757 - {
758 - "baggageCode": "INCLUDED",
759 - "description": "20 Kg Included",
760 - "price": 0.0,
761 - "currency": "USD",
762 - "included": true
763 - }
764 - ],
765 - "backwardBaggages": [
766 - {
767 - "baggageCode": "INCLUDED",
768 - "description": "20 Kg Included",
769 - "price": 0.0,
770 - "currency": "USD",
771 - "included": true
772 - }
773 - ]
774 - }
775 - ]
776 - },
777 - "extraServices": [],
778 - "insurancePrice": {
779 - "name": "Medical INS (N10000)",
780 - "price": 35.84,
781 - "actualStartDate": "2024-05-25T00:00:00.000",
782 - "actualEndDate": "2024-06-01T00:00:00.000",
783 - "optional": false,
784 - "includedInPackagePrice": true
785 - },
786 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:3",
787 - "sortCheckInOut": "25.05.2024-01.06.2024",
788 - "sortAirline": "fly dubai",
789 - "sortHotelName": "days by wyndham dubai deira hotel",
790 - "sortDetails": "ro",
791 - "sortPlacement": "superior city view king dbl"
792 - },
793 - {
794 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:a05a7dbf-9618-467e-b9db-018bda3057dd:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
795 - "priceCurrency": "USD",
796 - "totalPrice": 929.99,
797 - "agentCommissionPercent": 0.0,
798 - "agentCommissionAmount": 0.0,
799 - "includedExtrasAmount": 0,
800 - "priceDifference": 0,
801 - "hotel": {
802 - "hotelPriceId": "a05a7dbf-9618-467e-b9db-018bda3057dd",
803 - "hotelName": "Days By Wyndham Dubai Deira Hotel",
804 - "hotelCode": "75a4708c-1002-4330-b9d7-027a36515ff1",
805 - "nigths": 7,
806 - "mealPlan": "RO",
807 - "hotelClass": "3",
808 - "hotelColor": "#000000",
809 - "availabilityType": "FreeSale",
810 - "availableRoomsCount": 0,
811 - "fewRooms": true,
812 - "roomCategoryCode": "c472d23f-b127-467f-8098-300012b05f48",
813 - "roomCategoryName": "Superior City View Twin",
814 - "placementTypeName": "DBL",
815 - "checkInDate": "2024-05-25T00:00:00.000",
816 - "checkOutDate": "2024-06-01T00:00:00.000",
817 - "adults": 2,
818 - "children": 0,
819 - "districtUID": "aaff2238-fa72-4900-83f8-a16990415547",
820 - "districtName": "Deira",
821 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
822 - "cityName": "Dubai",
823 - "countryCode": "AE",
824 - "countryName": "United Arab Emirates",
825 - "hasAlcohol": false,
826 - "hasFreeWifi": true,
827 - "hasMetro": true,
828 - "hasPool": false,
829 - "hasMall": false,
830 - "infantMaxAge": 5.99,
831 - "childMinAge": 6.0,
832 - "childMaxAge": 11.99,
833 - "teenMinAge": 0.0,
834 - "teenMaxAge": 0.0,
835 - "adultMinAge": 12.0,
836 - "cancellationPolicyDescription": "Cancellation Policy: 1 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %",
837 - "cancellationPolicy": {
838 - "noShowChargeValue": 100.0,
839 - "noShowChargeValueType": "%",
840 - "earlyDepartureChargeValue": 100.0,
841 - "earlyDepartureChargeValueType": "%",
842 - "conditions": [
843 - {
844 - "timeunits": 1,
845 - "timeunitType": "Day",
846 - "timeOffsetTypeName": "Before Arrival",
847 - "chargeValue": 1.0,
848 - "chargeValueType": "Night"
849 - }
850 - ]
851 - }
852 - },
853 - "flight": {
854 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
855 - "departureDate": "2024-05-25T00:00:00.000",
856 - "returnDate": "2024-06-01T00:00:00.000",
857 - "departureTicketsLeft": 48,
858 - "returnTicketsLeft": 33,
859 - "departureAvailabilityType": "FreeSale",
860 - "returnAvailabilityType": "FreeSale",
861 - "isTwoWay": true,
862 - "sameBaggageForAll": false,
863 - "totalBaggage": false,
864 - "isBlock": true,
865 - "class": "Economy",
866 - "departureSegments": [
867 - {
868 - "airlineCode": "FZ",
869 - "airlineName": "Fly Dubai",
870 - "flightCode": "FZ1722",
871 - "class": "Economy",
872 - "lugageWeight": 20,
873 - "handLugageWeight": 6,
874 - "departureFlightDate": "2024-05-25T03:35:00.000",
875 - "departureCountryName": "Kazakhstan",
876 - "departureCityName": "Almaty",
877 - "departureAirportCode": "ALA",
878 - "departureAirportName": "Almaty Intl Airport",
879 - "departureTerminalCode": "ALA",
880 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
881 - "arrivalCountryName": "United Arab Emirates",
882 - "arrivalCityName": "Dubai",
883 - "arrivalAirportCode": "DXB",
884 - "arrivalAirportName": "Dubai Intl Airport",
885 - "arrivalTerminalCode": "DXB3",
886 - "flightDuration": "5h 35m"
887 - }
888 - ],
889 - "returnSegments": [
890 - {
891 - "airlineCode": "FZ",
892 - "airlineName": "Fly Dubai",
893 - "flightCode": "FZ1721",
894 - "class": "Economy",
895 - "lugageWeight": 20,
896 - "handLugageWeight": 6,
897 - "departureFlightDate": "2024-06-01T21:25:00.000",
898 - "departureCountryName": "United Arab Emirates",
899 - "departureCityName": "Dubai",
900 - "departureAirportCode": "DXB",
901 - "departureAirportName": "Dubai Intl Airport",
902 - "departureTerminalCode": "DXB3",
903 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
904 - "arrivalCountryName": "Kazakhstan",
905 - "arrivalCityName": "Almaty",
906 - "arrivalAirportCode": "ALA",
907 - "arrivalAirportName": "Almaty Intl Airport",
908 - "arrivalTerminalCode": "ALA",
909 - "flightDuration": "3h 10m"
910 - }
911 - ],
912 - "passengers": [
913 - {
914 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
915 - "isAdult": true,
916 - "selectedForwardBaggageCode": "INCLUDED",
917 - "selectedBackwardBaggageCode": "INCLUDED",
918 - "forwardBaggages": [
919 - {
920 - "baggageCode": "INCLUDED",
921 - "description": "20 Kg Included",
922 - "price": 0.0,
923 - "currency": "USD",
924 - "included": true
925 - }
926 - ],
927 - "backwardBaggages": [
928 - {
929 - "baggageCode": "INCLUDED",
930 - "description": "20 Kg Included",
931 - "price": 0.0,
932 - "currency": "USD",
933 - "included": true
934 - }
935 - ]
936 - },
937 - {
938 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
939 - "isAdult": true,
940 - "selectedForwardBaggageCode": "INCLUDED",
941 - "selectedBackwardBaggageCode": "INCLUDED",
942 - "forwardBaggages": [
943 - {
944 - "baggageCode": "INCLUDED",
945 - "description": "20 Kg Included",
946 - "price": 0.0,
947 - "currency": "USD",
948 - "included": true
949 - }
950 - ],
951 - "backwardBaggages": [
952 - {
953 - "baggageCode": "INCLUDED",
954 - "description": "20 Kg Included",
955 - "price": 0.0,
956 - "currency": "USD",
957 - "included": true
958 - }
959 - ]
960 - }
961 - ]
962 - },
963 - "extraServices": [],
964 - "insurancePrice": {
965 - "name": "Medical INS (N10000)",
966 - "price": 35.84,
967 - "actualStartDate": "2024-05-25T00:00:00.000",
968 - "actualEndDate": "2024-06-01T00:00:00.000",
969 - "optional": false,
970 - "includedInPackagePrice": true
971 - },
972 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:4",
973 - "sortCheckInOut": "25.05.2024-01.06.2024",
974 - "sortAirline": "fly dubai",
975 - "sortHotelName": "days by wyndham dubai deira hotel",
976 - "sortDetails": "ro",
977 - "sortPlacement": "superior city view twin dbl"
978 - },
979 - {
980 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:f390546d-c849-4c7f-859d-941993d48cef:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
981 - "priceCurrency": "USD",
982 - "totalPrice": 935.88,
983 - "agentCommissionPercent": 0.0,
984 - "agentCommissionAmount": 0.0,
985 - "includedExtrasAmount": 0,
986 - "priceDifference": 0,
987 - "hotel": {
988 - "hotelPriceId": "f390546d-c849-4c7f-859d-941993d48cef",
989 - "hotelName": "CityMax Sharjah",
990 - "hotelCode": "f10768c7-00e3-4eb5-a406-769f379884f2",
991 - "nigths": 7,
992 - "mealPlan": "BB",
993 - "hotelClass": "3",
994 - "hotelColor": "#000000",
995 - "availabilityType": "FreeSale",
996 - "availableRoomsCount": 0,
997 - "fewRooms": true,
998 - "roomCategoryCode": "bc42c036-9a73-48e4-b4d0-4749e6172dc1",
999 - "roomCategoryName": "Standard Room",
1000 - "placementTypeName": "DBL",
1001 - "checkInDate": "2024-05-25T00:00:00.000",
1002 - "checkOutDate": "2024-06-01T00:00:00.000",
1003 - "adults": 2,
1004 - "children": 0,
1005 - "districtUID": "7ac1bbc8-59ea-4977-b272-ed8553f94f9b",
1006 - "districtName": "Sharjah",
1007 - "cityUID": "f78ac3bc-f040-46d0-8319-2c52083080a6",
1008 - "cityName": "Sharjah",
1009 - "countryCode": "AE",
1010 - "countryName": "United Arab Emirates",
1011 - "hasAlcohol": false,
1012 - "hasFreeWifi": true,
1013 - "hasMetro": false,
1014 - "hasPool": false,
1015 - "hasMall": true,
1016 - "infantMaxAge": 4.99,
1017 - "childMinAge": 5.0,
1018 - "childMaxAge": 11.99,
1019 - "teenMinAge": 0.0,
1020 - "teenMaxAge": 0.0,
1021 - "adultMinAge": 12.0,
1022 - "cancellationPolicyDescription": "Cancellation Policy: 3 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %",
1023 - "cancellationPolicy": {
1024 - "noShowChargeValue": 100.0,
1025 - "noShowChargeValueType": "%",
1026 - "earlyDepartureChargeValue": 100.0,
1027 - "earlyDepartureChargeValueType": "%",
1028 - "conditions": [
1029 - {
1030 - "timeunits": 3,
1031 - "timeunitType": "Day",
1032 - "timeOffsetTypeName": "Before Arrival",
1033 - "chargeValue": 1.0,
1034 - "chargeValueType": "Night"
1035 - }
1036 - ]
1037 - }
1038 - },
1039 - "flight": {
1040 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
1041 - "departureDate": "2024-05-25T00:00:00.000",
1042 - "returnDate": "2024-06-01T00:00:00.000",
1043 - "departureTicketsLeft": 48,
1044 - "returnTicketsLeft": 33,
1045 - "departureAvailabilityType": "FreeSale",
1046 - "returnAvailabilityType": "FreeSale",
1047 - "isTwoWay": true,
1048 - "sameBaggageForAll": false,
1049 - "totalBaggage": false,
1050 - "isBlock": true,
1051 - "class": "Economy",
1052 - "departureSegments": [
1053 - {
1054 - "airlineCode": "FZ",
1055 - "airlineName": "Fly Dubai",
1056 - "flightCode": "FZ1722",
1057 - "class": "Economy",
1058 - "lugageWeight": 20,
1059 - "handLugageWeight": 6,
1060 - "departureFlightDate": "2024-05-25T03:35:00.000",
1061 - "departureCountryName": "Kazakhstan",
1062 - "departureCityName": "Almaty",
1063 - "departureAirportCode": "ALA",
1064 - "departureAirportName": "Almaty Intl Airport",
1065 - "departureTerminalCode": "ALA",
1066 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
1067 - "arrivalCountryName": "United Arab Emirates",
1068 - "arrivalCityName": "Dubai",
1069 - "arrivalAirportCode": "DXB",
1070 - "arrivalAirportName": "Dubai Intl Airport",
1071 - "arrivalTerminalCode": "DXB3",
1072 - "flightDuration": "5h 35m"
1073 - }
1074 - ],
1075 - "returnSegments": [
1076 - {
1077 - "airlineCode": "FZ",
1078 - "airlineName": "Fly Dubai",
1079 - "flightCode": "FZ1721",
1080 - "class": "Economy",
1081 - "lugageWeight": 20,
1082 - "handLugageWeight": 6,
1083 - "departureFlightDate": "2024-06-01T21:25:00.000",
1084 - "departureCountryName": "United Arab Emirates",
1085 - "departureCityName": "Dubai",
1086 - "departureAirportCode": "DXB",
1087 - "departureAirportName": "Dubai Intl Airport",
1088 - "departureTerminalCode": "DXB3",
1089 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
1090 - "arrivalCountryName": "Kazakhstan",
1091 - "arrivalCityName": "Almaty",
1092 - "arrivalAirportCode": "ALA",
1093 - "arrivalAirportName": "Almaty Intl Airport",
1094 - "arrivalTerminalCode": "ALA",
1095 - "flightDuration": "3h 10m"
1096 - }
1097 - ],
1098 - "passengers": [
1099 - {
1100 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
1101 - "isAdult": true,
1102 - "selectedForwardBaggageCode": "INCLUDED",
1103 - "selectedBackwardBaggageCode": "INCLUDED",
1104 - "forwardBaggages": [
1105 - {
1106 - "baggageCode": "INCLUDED",
1107 - "description": "20 Kg Included",
1108 - "price": 0.0,
1109 - "currency": "USD",
1110 - "included": true
1111 - }
1112 - ],
1113 - "backwardBaggages": [
1114 - {
1115 - "baggageCode": "INCLUDED",
1116 - "description": "20 Kg Included",
1117 - "price": 0.0,
1118 - "currency": "USD",
1119 - "included": true
1120 - }
1121 - ]
1122 - },
1123 - {
1124 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
1125 - "isAdult": true,
1126 - "selectedForwardBaggageCode": "INCLUDED",
1127 - "selectedBackwardBaggageCode": "INCLUDED",
1128 - "forwardBaggages": [
1129 - {
1130 - "baggageCode": "INCLUDED",
1131 - "description": "20 Kg Included",
1132 - "price": 0.0,
1133 - "currency": "USD",
1134 - "included": true
1135 - }
1136 - ],
1137 - "backwardBaggages": [
1138 - {
1139 - "baggageCode": "INCLUDED",
1140 - "description": "20 Kg Included",
1141 - "price": 0.0,
1142 - "currency": "USD",
1143 - "included": true
1144 - }
1145 - ]
1146 - }
1147 - ]
1148 - },
1149 - "extraServices": [],
1150 - "insurancePrice": {
1151 - "name": "Medical INS (N10000)",
1152 - "price": 35.84,
1153 - "actualStartDate": "2024-05-25T00:00:00.000",
1154 - "actualEndDate": "2024-06-01T00:00:00.000",
1155 - "optional": false,
1156 - "includedInPackagePrice": true
1157 - },
1158 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:5",
1159 - "sortCheckInOut": "25.05.2024-01.06.2024",
1160 - "sortAirline": "fly dubai",
1161 - "sortHotelName": "citymax sharjah",
1162 - "sortDetails": "bb",
1163 - "sortPlacement": "standard room dbl"
1164 - },
1165 - {
1166 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:0df7a96e-1c3c-4484-b7c7-b5a7d79635c5:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
1167 - "priceCurrency": "USD",
1168 - "totalPrice": 945.47,
1169 - "agentCommissionPercent": 0.0,
1170 - "agentCommissionAmount": 0.0,
1171 - "includedExtrasAmount": 0,
1172 - "priceDifference": 0,
1173 - "hotel": {
1174 - "hotelPriceId": "0df7a96e-1c3c-4484-b7c7-b5a7d79635c5",
1175 - "hotelName": "Ibis Hotel Al Barsha Dubai",
1176 - "hotelCode": "d6d39ee4-65a7-48f5-9fa8-5f9dddc8b7eb",
1177 - "nigths": 7,
1178 - "mealPlan": "BB",
1179 - "hotelClass": "3",
1180 - "hotelColor": "#000000",
1181 - "availabilityType": "FreeSale",
1182 - "availableRoomsCount": 0,
1183 - "fewRooms": true,
1184 - "roomCategoryCode": "8c635457-5784-4fbd-a20b-b955b69b184c",
1185 - "roomCategoryName": "Standard Room",
1186 - "placementTypeName": "DBL",
1187 - "checkInDate": "2024-05-25T00:00:00.000",
1188 - "checkOutDate": "2024-06-01T00:00:00.000",
1189 - "adults": 2,
1190 - "children": 0,
1191 - "districtUID": "4c65f6ed-902b-4fd8-9419-af7884c22c5e",
1192 - "districtName": "Al Barsha",
1193 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
1194 - "cityName": "Dubai",
1195 - "countryCode": "AE",
1196 - "countryName": "United Arab Emirates",
1197 - "hasAlcohol": true,
1198 - "hasFreeWifi": true,
1199 - "hasMetro": false,
1200 - "hasPool": false,
1201 - "hasMall": false,
1202 - "infantMaxAge": 3.99,
1203 - "childMinAge": 4.0,
1204 - "childMaxAge": 5.99,
1205 - "teenMinAge": 0.0,
1206 - "teenMaxAge": 0.0,
1207 - "adultMinAge": 6.0,
1208 - "cancellationPolicyDescription": "Cancellation Policy: 1 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %",
1209 - "cancellationPolicy": {
1210 - "noShowChargeValue": 100.0,
1211 - "noShowChargeValueType": "%",
1212 - "earlyDepartureChargeValue": 100.0,
1213 - "earlyDepartureChargeValueType": "%",
1214 - "conditions": [
1215 - {
1216 - "timeunits": 1,
1217 - "timeunitType": "Day",
1218 - "timeOffsetTypeName": "Before Arrival",
1219 - "chargeValue": 100.0,
1220 - "chargeValueType": "%"
1221 - }
1222 - ]
1223 - }
1224 - },
1225 - "flight": {
1226 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
1227 - "departureDate": "2024-05-25T00:00:00.000",
1228 - "returnDate": "2024-06-01T00:00:00.000",
1229 - "departureTicketsLeft": 48,
1230 - "returnTicketsLeft": 33,
1231 - "departureAvailabilityType": "FreeSale",
1232 - "returnAvailabilityType": "FreeSale",
1233 - "isTwoWay": true,
1234 - "sameBaggageForAll": false,
1235 - "totalBaggage": false,
1236 - "isBlock": true,
1237 - "class": "Economy",
1238 - "departureSegments": [
1239 - {
1240 - "airlineCode": "FZ",
1241 - "airlineName": "Fly Dubai",
1242 - "flightCode": "FZ1722",
1243 - "class": "Economy",
1244 - "lugageWeight": 20,
1245 - "handLugageWeight": 6,
1246 - "departureFlightDate": "2024-05-25T03:35:00.000",
1247 - "departureCountryName": "Kazakhstan",
1248 - "departureCityName": "Almaty",
1249 - "departureAirportCode": "ALA",
1250 - "departureAirportName": "Almaty Intl Airport",
1251 - "departureTerminalCode": "ALA",
1252 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
1253 - "arrivalCountryName": "United Arab Emirates",
1254 - "arrivalCityName": "Dubai",
1255 - "arrivalAirportCode": "DXB",
1256 - "arrivalAirportName": "Dubai Intl Airport",
1257 - "arrivalTerminalCode": "DXB3",
1258 - "flightDuration": "5h 35m"
1259 - }
1260 - ],
1261 - "returnSegments": [
1262 - {
1263 - "airlineCode": "FZ",
1264 - "airlineName": "Fly Dubai",
1265 - "flightCode": "FZ1721",
1266 - "class": "Economy",
1267 - "lugageWeight": 20,
1268 - "handLugageWeight": 6,
1269 - "departureFlightDate": "2024-06-01T21:25:00.000",
1270 - "departureCountryName": "United Arab Emirates",
1271 - "departureCityName": "Dubai",
1272 - "departureAirportCode": "DXB",
1273 - "departureAirportName": "Dubai Intl Airport",
1274 - "departureTerminalCode": "DXB3",
1275 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
1276 - "arrivalCountryName": "Kazakhstan",
1277 - "arrivalCityName": "Almaty",
1278 - "arrivalAirportCode": "ALA",
1279 - "arrivalAirportName": "Almaty Intl Airport",
1280 - "arrivalTerminalCode": "ALA",
1281 - "flightDuration": "3h 10m"
1282 - }
1283 - ],
1284 - "passengers": [
1285 - {
1286 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
1287 - "isAdult": true,
1288 - "selectedForwardBaggageCode": "INCLUDED",
1289 - "selectedBackwardBaggageCode": "INCLUDED",
1290 - "forwardBaggages": [
1291 - {
1292 - "baggageCode": "INCLUDED",
1293 - "description": "20 Kg Included",
1294 - "price": 0.0,
1295 - "currency": "USD",
1296 - "included": true
1297 - }
1298 - ],
1299 - "backwardBaggages": [
1300 - {
1301 - "baggageCode": "INCLUDED",
1302 - "description": "20 Kg Included",
1303 - "price": 0.0,
1304 - "currency": "USD",
1305 - "included": true
1306 - }
1307 - ]
1308 - },
1309 - {
1310 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
1311 - "isAdult": true,
1312 - "selectedForwardBaggageCode": "INCLUDED",
1313 - "selectedBackwardBaggageCode": "INCLUDED",
1314 - "forwardBaggages": [
1315 - {
1316 - "baggageCode": "INCLUDED",
1317 - "description": "20 Kg Included",
1318 - "price": 0.0,
1319 - "currency": "USD",
1320 - "included": true
1321 - }
1322 - ],
1323 - "backwardBaggages": [
1324 - {
1325 - "baggageCode": "INCLUDED",
1326 - "description": "20 Kg Included",
1327 - "price": 0.0,
1328 - "currency": "USD",
1329 - "included": true
1330 - }
1331 - ]
1332 - }
1333 - ]
1334 - },
1335 - "extraServices": [],
1336 - "insurancePrice": {
1337 - "name": "Medical INS (N10000)",
1338 - "price": 35.84,
1339 - "actualStartDate": "2024-05-25T00:00:00.000",
1340 - "actualEndDate": "2024-06-01T00:00:00.000",
1341 - "optional": false,
1342 - "includedInPackagePrice": true
1343 - },
1344 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:6",
1345 - "sortCheckInOut": "25.05.2024-01.06.2024",
1346 - "sortAirline": "fly dubai",
1347 - "sortHotelName": "ibis hotel al barsha dubai",
1348 - "sortDetails": "bb",
1349 - "sortPlacement": "standard room dbl"
1350 - },
1351 - {
1352 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:02146036-2660-4ba4-be40-851727962e24:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
1353 - "priceCurrency": "USD",
1354 - "totalPrice": 947.91,
1355 - "agentCommissionPercent": 0.0,
1356 - "agentCommissionAmount": 0.0,
1357 - "includedExtrasAmount": 0,
1358 - "priceDifference": 0,
1359 - "hotel": {
1360 - "hotelPriceId": "02146036-2660-4ba4-be40-851727962e24",
1361 - "hotelName": "Days By Wyndham Dubai Deira Hotel",
1362 - "hotelCode": "75a4708c-1002-4330-b9d7-027a36515ff1",
1363 - "nigths": 7,
1364 - "mealPlan": "RO",
1365 - "hotelClass": "3",
1366 - "hotelColor": "#000000",
1367 - "availabilityType": "FreeSale",
1368 - "availableRoomsCount": 0,
1369 - "fewRooms": true,
1370 - "roomCategoryCode": "f9948ad5-5489-47b7-9971-7ab26487c6c1",
1371 - "roomCategoryName": "Deluxe Skyline View King",
1372 - "placementTypeName": "DBL",
1373 - "checkInDate": "2024-05-25T00:00:00.000",
1374 - "checkOutDate": "2024-06-01T00:00:00.000",
1375 - "adults": 2,
1376 - "children": 0,
1377 - "districtUID": "aaff2238-fa72-4900-83f8-a16990415547",
1378 - "districtName": "Deira",
1379 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
1380 - "cityName": "Dubai",
1381 - "countryCode": "AE",
1382 - "countryName": "United Arab Emirates",
1383 - "hasAlcohol": false,
1384 - "hasFreeWifi": true,
1385 - "hasMetro": true,
1386 - "hasPool": false,
1387 - "hasMall": false,
1388 - "infantMaxAge": 5.99,
1389 - "childMinAge": 6.0,
1390 - "childMaxAge": 11.99,
1391 - "teenMinAge": 0.0,
1392 - "teenMaxAge": 0.0,
1393 - "adultMinAge": 12.0,
1394 - "cancellationPolicyDescription": "Cancellation Policy: 1 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %",
1395 - "cancellationPolicy": {
1396 - "noShowChargeValue": 100.0,
1397 - "noShowChargeValueType": "%",
1398 - "earlyDepartureChargeValue": 100.0,
1399 - "earlyDepartureChargeValueType": "%",
1400 - "conditions": [
1401 - {
1402 - "timeunits": 1,
1403 - "timeunitType": "Day",
1404 - "timeOffsetTypeName": "Before Arrival",
1405 - "chargeValue": 1.0,
1406 - "chargeValueType": "Night"
1407 - }
1408 - ]
1409 - }
1410 - },
1411 - "flight": {
1412 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
1413 - "departureDate": "2024-05-25T00:00:00.000",
1414 - "returnDate": "2024-06-01T00:00:00.000",
1415 - "departureTicketsLeft": 48,
1416 - "returnTicketsLeft": 33,
1417 - "departureAvailabilityType": "FreeSale",
1418 - "returnAvailabilityType": "FreeSale",
1419 - "isTwoWay": true,
1420 - "sameBaggageForAll": false,
1421 - "totalBaggage": false,
1422 - "isBlock": true,
1423 - "class": "Economy",
1424 - "departureSegments": [
1425 - {
1426 - "airlineCode": "FZ",
1427 - "airlineName": "Fly Dubai",
1428 - "flightCode": "FZ1722",
1429 - "class": "Economy",
1430 - "lugageWeight": 20,
1431 - "handLugageWeight": 6,
1432 - "departureFlightDate": "2024-05-25T03:35:00.000",
1433 - "departureCountryName": "Kazakhstan",
1434 - "departureCityName": "Almaty",
1435 - "departureAirportCode": "ALA",
1436 - "departureAirportName": "Almaty Intl Airport",
1437 - "departureTerminalCode": "ALA",
1438 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
1439 - "arrivalCountryName": "United Arab Emirates",
1440 - "arrivalCityName": "Dubai",
1441 - "arrivalAirportCode": "DXB",
1442 - "arrivalAirportName": "Dubai Intl Airport",
1443 - "arrivalTerminalCode": "DXB3",
1444 - "flightDuration": "5h 35m"
1445 - }
1446 - ],
1447 - "returnSegments": [
1448 - {
1449 - "airlineCode": "FZ",
1450 - "airlineName": "Fly Dubai",
1451 - "flightCode": "FZ1721",
1452 - "class": "Economy",
1453 - "lugageWeight": 20,
1454 - "handLugageWeight": 6,
1455 - "departureFlightDate": "2024-06-01T21:25:00.000",
1456 - "departureCountryName": "United Arab Emirates",
1457 - "departureCityName": "Dubai",
1458 - "departureAirportCode": "DXB",
1459 - "departureAirportName": "Dubai Intl Airport",
1460 - "departureTerminalCode": "DXB3",
1461 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
1462 - "arrivalCountryName": "Kazakhstan",
1463 - "arrivalCityName": "Almaty",
1464 - "arrivalAirportCode": "ALA",
1465 - "arrivalAirportName": "Almaty Intl Airport",
1466 - "arrivalTerminalCode": "ALA",
1467 - "flightDuration": "3h 10m"
1468 - }
1469 - ],
1470 - "passengers": [
1471 - {
1472 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
1473 - "isAdult": true,
1474 - "selectedForwardBaggageCode": "INCLUDED",
1475 - "selectedBackwardBaggageCode": "INCLUDED",
1476 - "forwardBaggages": [
1477 - {
1478 - "baggageCode": "INCLUDED",
1479 - "description": "20 Kg Included",
1480 - "price": 0.0,
1481 - "currency": "USD",
1482 - "included": true
1483 - }
1484 - ],
1485 - "backwardBaggages": [
1486 - {
1487 - "baggageCode": "INCLUDED",
1488 - "description": "20 Kg Included",
1489 - "price": 0.0,
1490 - "currency": "USD",
1491 - "included": true
1492 - }
1493 - ]
1494 - },
1495 - {
1496 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
1497 - "isAdult": true,
1498 - "selectedForwardBaggageCode": "INCLUDED",
1499 - "selectedBackwardBaggageCode": "INCLUDED",
1500 - "forwardBaggages": [
1501 - {
1502 - "baggageCode": "INCLUDED",
1503 - "description": "20 Kg Included",
1504 - "price": 0.0,
1505 - "currency": "USD",
1506 - "included": true
1507 - }
1508 - ],
1509 - "backwardBaggages": [
1510 - {
1511 - "baggageCode": "INCLUDED",
1512 - "description": "20 Kg Included",
1513 - "price": 0.0,
1514 - "currency": "USD",
1515 - "included": true
1516 - }
1517 - ]
1518 - }
1519 - ]
1520 - },
1521 - "extraServices": [],
1522 - "insurancePrice": {
1523 - "name": "Medical INS (N10000)",
1524 - "price": 35.84,
1525 - "actualStartDate": "2024-05-25T00:00:00.000",
1526 - "actualEndDate": "2024-06-01T00:00:00.000",
1527 - "optional": false,
1528 - "includedInPackagePrice": true
1529 - },
1530 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:7",
1531 - "sortCheckInOut": "25.05.2024-01.06.2024",
1532 - "sortAirline": "fly dubai",
1533 - "sortHotelName": "days by wyndham dubai deira hotel",
1534 - "sortDetails": "ro",
1535 - "sortPlacement": "deluxe skyline view king dbl"
1536 - },
1537 - {
1538 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:25c1059b-ed78-4fa4-9342-1ac6a2bc8c6a:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
1539 - "priceCurrency": "USD",
1540 - "totalPrice": 947.91,
1541 - "agentCommissionPercent": 0.0,
1542 - "agentCommissionAmount": 0.0,
1543 - "includedExtrasAmount": 0,
1544 - "priceDifference": 0,
1545 - "hotel": {
1546 - "hotelPriceId": "25c1059b-ed78-4fa4-9342-1ac6a2bc8c6a",
1547 - "hotelName": "Days By Wyndham Dubai Deira Hotel",
1548 - "hotelCode": "75a4708c-1002-4330-b9d7-027a36515ff1",
1549 - "nigths": 7,
1550 - "mealPlan": "RO",
1551 - "hotelClass": "3",
1552 - "hotelColor": "#000000",
1553 - "availabilityType": "FreeSale",
1554 - "availableRoomsCount": 0,
1555 - "fewRooms": true,
1556 - "roomCategoryCode": "ace81545-5d34-40cc-899a-12fef1f8b36e",
1557 - "roomCategoryName": "Deluxe Skyline View Twin",
1558 - "placementTypeName": "DBL",
1559 - "checkInDate": "2024-05-25T00:00:00.000",
1560 - "checkOutDate": "2024-06-01T00:00:00.000",
1561 - "adults": 2,
1562 - "children": 0,
1563 - "districtUID": "aaff2238-fa72-4900-83f8-a16990415547",
1564 - "districtName": "Deira",
1565 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
1566 - "cityName": "Dubai",
1567 - "countryCode": "AE",
1568 - "countryName": "United Arab Emirates",
1569 - "hasAlcohol": false,
1570 - "hasFreeWifi": true,
1571 - "hasMetro": true,
1572 - "hasPool": false,
1573 - "hasMall": false,
1574 - "infantMaxAge": 5.99,
1575 - "childMinAge": 6.0,
1576 - "childMaxAge": 11.99,
1577 - "teenMinAge": 0.0,
1578 - "teenMaxAge": 0.0,
1579 - "adultMinAge": 12.0,
1580 - "cancellationPolicyDescription": "Cancellation Policy: 1 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %",
1581 - "cancellationPolicy": {
1582 - "noShowChargeValue": 100.0,
1583 - "noShowChargeValueType": "%",
1584 - "earlyDepartureChargeValue": 100.0,
1585 - "earlyDepartureChargeValueType": "%",
1586 - "conditions": [
1587 - {
1588 - "timeunits": 1,
1589 - "timeunitType": "Day",
1590 - "timeOffsetTypeName": "Before Arrival",
1591 - "chargeValue": 1.0,
1592 - "chargeValueType": "Night"
1593 - }
1594 - ]
1595 - }
1596 - },
1597 - "flight": {
1598 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
1599 - "departureDate": "2024-05-25T00:00:00.000",
1600 - "returnDate": "2024-06-01T00:00:00.000",
1601 - "departureTicketsLeft": 48,
1602 - "returnTicketsLeft": 33,
1603 - "departureAvailabilityType": "FreeSale",
1604 - "returnAvailabilityType": "FreeSale",
1605 - "isTwoWay": true,
1606 - "sameBaggageForAll": false,
1607 - "totalBaggage": false,
1608 - "isBlock": true,
1609 - "class": "Economy",
1610 - "departureSegments": [
1611 - {
1612 - "airlineCode": "FZ",
1613 - "airlineName": "Fly Dubai",
1614 - "flightCode": "FZ1722",
1615 - "class": "Economy",
1616 - "lugageWeight": 20,
1617 - "handLugageWeight": 6,
1618 - "departureFlightDate": "2024-05-25T03:35:00.000",
1619 - "departureCountryName": "Kazakhstan",
1620 - "departureCityName": "Almaty",
1621 - "departureAirportCode": "ALA",
1622 - "departureAirportName": "Almaty Intl Airport",
1623 - "departureTerminalCode": "ALA",
1624 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
1625 - "arrivalCountryName": "United Arab Emirates",
1626 - "arrivalCityName": "Dubai",
1627 - "arrivalAirportCode": "DXB",
1628 - "arrivalAirportName": "Dubai Intl Airport",
1629 - "arrivalTerminalCode": "DXB3",
1630 - "flightDuration": "5h 35m"
1631 - }
1632 - ],
1633 - "returnSegments": [
1634 - {
1635 - "airlineCode": "FZ",
1636 - "airlineName": "Fly Dubai",
1637 - "flightCode": "FZ1721",
1638 - "class": "Economy",
1639 - "lugageWeight": 20,
1640 - "handLugageWeight": 6,
1641 - "departureFlightDate": "2024-06-01T21:25:00.000",
1642 - "departureCountryName": "United Arab Emirates",
1643 - "departureCityName": "Dubai",
1644 - "departureAirportCode": "DXB",
1645 - "departureAirportName": "Dubai Intl Airport",
1646 - "departureTerminalCode": "DXB3",
1647 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
1648 - "arrivalCountryName": "Kazakhstan",
1649 - "arrivalCityName": "Almaty",
1650 - "arrivalAirportCode": "ALA",
1651 - "arrivalAirportName": "Almaty Intl Airport",
1652 - "arrivalTerminalCode": "ALA",
1653 - "flightDuration": "3h 10m"
1654 - }
1655 - ],
1656 - "passengers": [
1657 - {
1658 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
1659 - "isAdult": true,
1660 - "selectedForwardBaggageCode": "INCLUDED",
1661 - "selectedBackwardBaggageCode": "INCLUDED",
1662 - "forwardBaggages": [
1663 - {
1664 - "baggageCode": "INCLUDED",
1665 - "description": "20 Kg Included",
1666 - "price": 0.0,
1667 - "currency": "USD",
1668 - "included": true
1669 - }
1670 - ],
1671 - "backwardBaggages": [
1672 - {
1673 - "baggageCode": "INCLUDED",
1674 - "description": "20 Kg Included",
1675 - "price": 0.0,
1676 - "currency": "USD",
1677 - "included": true
1678 - }
1679 - ]
1680 - },
1681 - {
1682 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
1683 - "isAdult": true,
1684 - "selectedForwardBaggageCode": "INCLUDED",
1685 - "selectedBackwardBaggageCode": "INCLUDED",
1686 - "forwardBaggages": [
1687 - {
1688 - "baggageCode": "INCLUDED",
1689 - "description": "20 Kg Included",
1690 - "price": 0.0,
1691 - "currency": "USD",
1692 - "included": true
1693 - }
1694 - ],
1695 - "backwardBaggages": [
1696 - {
1697 - "baggageCode": "INCLUDED",
1698 - "description": "20 Kg Included",
1699 - "price": 0.0,
1700 - "currency": "USD",
1701 - "included": true
1702 - }
1703 - ]
1704 - }
1705 - ]
1706 - },
1707 - "extraServices": [],
1708 - "insurancePrice": {
1709 - "name": "Medical INS (N10000)",
1710 - "price": 35.84,
1711 - "actualStartDate": "2024-05-25T00:00:00.000",
1712 - "actualEndDate": "2024-06-01T00:00:00.000",
1713 - "optional": false,
1714 - "includedInPackagePrice": true
1715 - },
1716 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:8",
1717 - "sortCheckInOut": "25.05.2024-01.06.2024",
1718 - "sortAirline": "fly dubai",
1719 - "sortHotelName": "days by wyndham dubai deira hotel",
1720 - "sortDetails": "ro",
1721 - "sortPlacement": "deluxe skyline view twin dbl"
1722 - },
1723 - {
1724 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:a31007e3-cdd1-4691-9af4-0434c21cf127:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
1725 - "priceCurrency": "USD",
1726 - "totalPrice": 950.3,
1727 - "agentCommissionPercent": 0.0,
1728 - "agentCommissionAmount": 0.0,
1729 - "includedExtrasAmount": 0,
1730 - "priceDifference": 0,
1731 - "hotel": {
1732 - "hotelPriceId": "a31007e3-cdd1-4691-9af4-0434c21cf127",
1733 - "hotelName": "Holiday Inn Dubai Al-Maktoum Airport",
1734 - "hotelCode": "6a7b4517-1c81-4141-a627-532d7441fe2b",
1735 - "nigths": 7,
1736 - "mealPlan": "RO",
1737 - "hotelClass": "4",
1738 - "hotelColor": "#000000",
1739 - "availabilityType": "FreeSale",
1740 - "availableRoomsCount": 0,
1741 - "fewRooms": true,
1742 - "roomCategoryCode": "dd7b79a3-b72b-49bf-a16e-801aa6b64832",
1743 - "roomCategoryName": "Standard Room",
1744 - "placementTypeName": "DBL",
1745 - "checkInDate": "2024-05-25T00:00:00.000",
1746 - "checkOutDate": "2024-06-01T00:00:00.000",
1747 - "adults": 2,
1748 - "children": 0,
1749 - "districtUID": "853efcd4-6828-4878-aa01-2bb05b55e520",
1750 - "districtName": "Dubai World Central",
1751 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
1752 - "cityName": "Dubai",
1753 - "countryCode": "AE",
1754 - "countryName": "United Arab Emirates",
1755 - "hasAlcohol": false,
1756 - "hasFreeWifi": true,
1757 - "hasMetro": false,
1758 - "hasPool": false,
1759 - "hasMall": false,
1760 - "infantMaxAge": 5.99,
1761 - "childMinAge": 6.0,
1762 - "childMaxAge": 11.99,
1763 - "teenMinAge": 0.0,
1764 - "teenMaxAge": 0.0,
1765 - "adultMinAge": 12.0,
1766 - "cancellationPolicyDescription": "Cancellation Policy: 1 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %",
1767 - "cancellationPolicy": {
1768 - "noShowChargeValue": 100.0,
1769 - "noShowChargeValueType": "%",
1770 - "earlyDepartureChargeValue": 100.0,
1771 - "earlyDepartureChargeValueType": "%",
1772 - "conditions": [
1773 - {
1774 - "timeunits": 1,
1775 - "timeunitType": "Day",
1776 - "timeOffsetTypeName": "Before Arrival",
1777 - "chargeValue": 1.0,
1778 - "chargeValueType": "Night"
1779 - }
1780 - ]
1781 - }
1782 - },
1783 - "flight": {
1784 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
1785 - "departureDate": "2024-05-25T00:00:00.000",
1786 - "returnDate": "2024-06-01T00:00:00.000",
1787 - "departureTicketsLeft": 48,
1788 - "returnTicketsLeft": 33,
1789 - "departureAvailabilityType": "FreeSale",
1790 - "returnAvailabilityType": "FreeSale",
1791 - "isTwoWay": true,
1792 - "sameBaggageForAll": false,
1793 - "totalBaggage": false,
1794 - "isBlock": true,
1795 - "class": "Economy",
1796 - "departureSegments": [
1797 - {
1798 - "airlineCode": "FZ",
1799 - "airlineName": "Fly Dubai",
1800 - "flightCode": "FZ1722",
1801 - "class": "Economy",
1802 - "lugageWeight": 20,
1803 - "handLugageWeight": 6,
1804 - "departureFlightDate": "2024-05-25T03:35:00.000",
1805 - "departureCountryName": "Kazakhstan",
1806 - "departureCityName": "Almaty",
1807 - "departureAirportCode": "ALA",
1808 - "departureAirportName": "Almaty Intl Airport",
1809 - "departureTerminalCode": "ALA",
1810 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
1811 - "arrivalCountryName": "United Arab Emirates",
1812 - "arrivalCityName": "Dubai",
1813 - "arrivalAirportCode": "DXB",
1814 - "arrivalAirportName": "Dubai Intl Airport",
1815 - "arrivalTerminalCode": "DXB3",
1816 - "flightDuration": "5h 35m"
1817 - }
1818 - ],
1819 - "returnSegments": [
1820 - {
1821 - "airlineCode": "FZ",
1822 - "airlineName": "Fly Dubai",
1823 - "flightCode": "FZ1721",
1824 - "class": "Economy",
1825 - "lugageWeight": 20,
1826 - "handLugageWeight": 6,
1827 - "departureFlightDate": "2024-06-01T21:25:00.000",
1828 - "departureCountryName": "United Arab Emirates",
1829 - "departureCityName": "Dubai",
1830 - "departureAirportCode": "DXB",
1831 - "departureAirportName": "Dubai Intl Airport",
1832 - "departureTerminalCode": "DXB3",
1833 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
1834 - "arrivalCountryName": "Kazakhstan",
1835 - "arrivalCityName": "Almaty",
1836 - "arrivalAirportCode": "ALA",
1837 - "arrivalAirportName": "Almaty Intl Airport",
1838 - "arrivalTerminalCode": "ALA",
1839 - "flightDuration": "3h 10m"
1840 - }
1841 - ],
1842 - "passengers": [
1843 - {
1844 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
1845 - "isAdult": true,
1846 - "selectedForwardBaggageCode": "INCLUDED",
1847 - "selectedBackwardBaggageCode": "INCLUDED",
1848 - "forwardBaggages": [
1849 - {
1850 - "baggageCode": "INCLUDED",
1851 - "description": "20 Kg Included",
1852 - "price": 0.0,
1853 - "currency": "USD",
1854 - "included": true
1855 - }
1856 - ],
1857 - "backwardBaggages": [
1858 - {
1859 - "baggageCode": "INCLUDED",
1860 - "description": "20 Kg Included",
1861 - "price": 0.0,
1862 - "currency": "USD",
1863 - "included": true
1864 - }
1865 - ]
1866 - },
1867 - {
1868 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
1869 - "isAdult": true,
1870 - "selectedForwardBaggageCode": "INCLUDED",
1871 - "selectedBackwardBaggageCode": "INCLUDED",
1872 - "forwardBaggages": [
1873 - {
1874 - "baggageCode": "INCLUDED",
1875 - "description": "20 Kg Included",
1876 - "price": 0.0,
1877 - "currency": "USD",
1878 - "included": true
1879 - }
1880 - ],
1881 - "backwardBaggages": [
1882 - {
1883 - "baggageCode": "INCLUDED",
1884 - "description": "20 Kg Included",
1885 - "price": 0.0,
1886 - "currency": "USD",
1887 - "included": true
1888 - }
1889 - ]
1890 - }
1891 - ]
1892 - },
1893 - "extraServices": [],
1894 - "insurancePrice": {
1895 - "name": "Medical INS (N10000)",
1896 - "price": 35.84,
1897 - "actualStartDate": "2024-05-25T00:00:00.000",
1898 - "actualEndDate": "2024-06-01T00:00:00.000",
1899 - "optional": false,
1900 - "includedInPackagePrice": true
1901 - },
1902 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:9",
1903 - "sortCheckInOut": "25.05.2024-01.06.2024",
1904 - "sortAirline": "fly dubai",
1905 - "sortHotelName": "holiday inn dubai al maktoum airport",
1906 - "sortDetails": "ro",
1907 - "sortPlacement": "standard room dbl"
1908 - },
1909 - {
1910 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:548b1992-812d-4b78-b164-c202addf37fb:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
1911 - "priceCurrency": "USD",
1912 - "totalPrice": 950.99,
1913 - "agentCommissionPercent": 0.0,
1914 - "agentCommissionAmount": 0.0,
1915 - "includedExtrasAmount": 0,
1916 - "priceDifference": 0,
1917 - "hotel": {
1918 - "hotelPriceId": "548b1992-812d-4b78-b164-c202addf37fb",
1919 - "hotelName": "Kingsgate Al Jadaf Hotel",
1920 - "hotelCode": "835f48bc-9e35-4312-a383-059c919976d0",
1921 - "nigths": 7,
1922 - "mealPlan": "RO",
1923 - "hotelClass": "3",
1924 - "hotelColor": "#000000",
1925 - "availabilityType": "FreeSale",
1926 - "availableRoomsCount": 0,
1927 - "fewRooms": true,
1928 - "roomCategoryCode": "53e577d4-d45c-405f-867f-d367582227a1",
1929 - "roomCategoryName": "Standard Room City View",
1930 - "placementTypeName": "DBL",
1931 - "checkInDate": "2024-05-25T00:00:00.000",
1932 - "checkOutDate": "2024-06-01T00:00:00.000",
1933 - "adults": 2,
1934 - "children": 0,
1935 - "districtUID": "b152b6e9-e172-4ff5-b2df-3703b783cdf9",
1936 - "districtName": "Al Jaddaf",
1937 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
1938 - "cityName": "Dubai",
1939 - "countryCode": "AE",
1940 - "countryName": "United Arab Emirates",
1941 - "hasAlcohol": false,
1942 - "hasFreeWifi": true,
1943 - "hasMetro": false,
1944 - "hasPool": false,
1945 - "hasMall": false,
1946 - "infantMaxAge": 5.99,
1947 - "childMinAge": 6.0,
1948 - "childMaxAge": 11.99,
1949 - "teenMinAge": 0.0,
1950 - "teenMaxAge": 0.0,
1951 - "adultMinAge": 12.0,
1952 - "cancellationPolicyDescription": "Cancellation Policy: 1 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %",
1953 - "cancellationPolicy": {
1954 - "noShowChargeValue": 100.0,
1955 - "noShowChargeValueType": "%",
1956 - "earlyDepartureChargeValue": 100.0,
1957 - "earlyDepartureChargeValueType": "%",
1958 - "conditions": [
1959 - {
1960 - "timeunits": 1,
1961 - "timeunitType": "Day",
1962 - "timeOffsetTypeName": "Before Arrival",
1963 - "chargeValue": 1.0,
1964 - "chargeValueType": "Night"
1965 - }
1966 - ]
1967 - }
1968 - },
1969 - "flight": {
1970 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
1971 - "departureDate": "2024-05-25T00:00:00.000",
1972 - "returnDate": "2024-06-01T00:00:00.000",
1973 - "departureTicketsLeft": 48,
1974 - "returnTicketsLeft": 33,
1975 - "departureAvailabilityType": "FreeSale",
1976 - "returnAvailabilityType": "FreeSale",
1977 - "isTwoWay": true,
1978 - "sameBaggageForAll": false,
1979 - "totalBaggage": false,
1980 - "isBlock": true,
1981 - "class": "Economy",
1982 - "departureSegments": [
1983 - {
1984 - "airlineCode": "FZ",
1985 - "airlineName": "Fly Dubai",
1986 - "flightCode": "FZ1722",
1987 - "class": "Economy",
1988 - "lugageWeight": 20,
1989 - "handLugageWeight": 6,
1990 - "departureFlightDate": "2024-05-25T03:35:00.000",
1991 - "departureCountryName": "Kazakhstan",
1992 - "departureCityName": "Almaty",
1993 - "departureAirportCode": "ALA",
1994 - "departureAirportName": "Almaty Intl Airport",
1995 - "departureTerminalCode": "ALA",
1996 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
1997 - "arrivalCountryName": "United Arab Emirates",
1998 - "arrivalCityName": "Dubai",
1999 - "arrivalAirportCode": "DXB",
2000 - "arrivalAirportName": "Dubai Intl Airport",
2001 - "arrivalTerminalCode": "DXB3",
2002 - "flightDuration": "5h 35m"
2003 - }
2004 - ],
2005 - "returnSegments": [
2006 - {
2007 - "airlineCode": "FZ",
2008 - "airlineName": "Fly Dubai",
2009 - "flightCode": "FZ1721",
2010 - "class": "Economy",
2011 - "lugageWeight": 20,
2012 - "handLugageWeight": 6,
2013 - "departureFlightDate": "2024-06-01T21:25:00.000",
2014 - "departureCountryName": "United Arab Emirates",
2015 - "departureCityName": "Dubai",
2016 - "departureAirportCode": "DXB",
2017 - "departureAirportName": "Dubai Intl Airport",
2018 - "departureTerminalCode": "DXB3",
2019 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
2020 - "arrivalCountryName": "Kazakhstan",
2021 - "arrivalCityName": "Almaty",
2022 - "arrivalAirportCode": "ALA",
2023 - "arrivalAirportName": "Almaty Intl Airport",
2024 - "arrivalTerminalCode": "ALA",
2025 - "flightDuration": "3h 10m"
2026 - }
2027 - ],
2028 - "passengers": [
2029 - {
2030 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
2031 - "isAdult": true,
2032 - "selectedForwardBaggageCode": "INCLUDED",
2033 - "selectedBackwardBaggageCode": "INCLUDED",
2034 - "forwardBaggages": [
2035 - {
2036 - "baggageCode": "INCLUDED",
2037 - "description": "20 Kg Included",
2038 - "price": 0.0,
2039 - "currency": "USD",
2040 - "included": true
2041 - }
2042 - ],
2043 - "backwardBaggages": [
2044 - {
2045 - "baggageCode": "INCLUDED",
2046 - "description": "20 Kg Included",
2047 - "price": 0.0,
2048 - "currency": "USD",
2049 - "included": true
2050 - }
2051 - ]
2052 - },
2053 - {
2054 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
2055 - "isAdult": true,
2056 - "selectedForwardBaggageCode": "INCLUDED",
2057 - "selectedBackwardBaggageCode": "INCLUDED",
2058 - "forwardBaggages": [
2059 - {
2060 - "baggageCode": "INCLUDED",
2061 - "description": "20 Kg Included",
2062 - "price": 0.0,
2063 - "currency": "USD",
2064 - "included": true
2065 - }
2066 - ],
2067 - "backwardBaggages": [
2068 - {
2069 - "baggageCode": "INCLUDED",
2070 - "description": "20 Kg Included",
2071 - "price": 0.0,
2072 - "currency": "USD",
2073 - "included": true
2074 - }
2075 - ]
2076 - }
2077 - ]
2078 - },
2079 - "extraServices": [],
2080 - "insurancePrice": {
2081 - "name": "Medical INS (N10000)",
2082 - "price": 35.84,
2083 - "actualStartDate": "2024-05-25T00:00:00.000",
2084 - "actualEndDate": "2024-06-01T00:00:00.000",
2085 - "optional": false,
2086 - "includedInPackagePrice": true
2087 - },
2088 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:10",
2089 - "sortCheckInOut": "25.05.2024-01.06.2024",
2090 - "sortAirline": "fly dubai",
2091 - "sortHotelName": "kingsgate al jadaf hotel",
2092 - "sortDetails": "ro",
2093 - "sortPlacement": "standard room city view dbl"
2094 - },
2095 - {
2096 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:2d79071b-9015-43cb-b68d-fa15bca7142d:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
2097 - "priceCurrency": "USD",
2098 - "totalPrice": 950.99,
2099 - "agentCommissionPercent": 0.0,
2100 - "agentCommissionAmount": 0.0,
2101 - "includedExtrasAmount": 0,
2102 - "priceDifference": 0,
2103 - "hotel": {
2104 - "hotelPriceId": "2d79071b-9015-43cb-b68d-fa15bca7142d",
2105 - "hotelName": "Reflections Hotel",
2106 - "hotelCode": "2b8e0fc5-88b0-4a37-9d68-55e821465ea1",
2107 - "nigths": 7,
2108 - "mealPlan": "RO",
2109 - "hotelClass": "4",
2110 - "hotelColor": "#000000",
2111 - "availabilityType": "StopSale",
2112 - "availableRoomsCount": 0,
2113 - "fewRooms": true,
2114 - "roomCategoryCode": "777a1e83-489c-45b5-89e1-7d4eb81e7f56",
2115 - "roomCategoryName": "Deluxe Room ",
2116 - "placementTypeName": "DBL",
2117 - "checkInDate": "2024-05-25T00:00:00.000",
2118 - "checkOutDate": "2024-06-01T00:00:00.000",
2119 - "adults": 2,
2120 - "children": 0,
2121 - "districtUID": "b152b6e9-e172-4ff5-b2df-3703b783cdf9",
2122 - "districtName": "Al Jaddaf",
2123 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
2124 - "cityName": "Dubai",
2125 - "countryCode": "AE",
2126 - "countryName": "United Arab Emirates",
2127 - "hasAlcohol": false,
2128 - "hasFreeWifi": true,
2129 - "hasMetro": false,
2130 - "hasPool": true,
2131 - "hasMall": false,
2132 - "infantMaxAge": 5.99,
2133 - "childMinAge": 6.0,
2134 - "childMaxAge": 11.99,
2135 - "teenMinAge": 0.0,
2136 - "teenMaxAge": 0.0,
2137 - "adultMinAge": 12.0,
2138 - "cancellationPolicyDescription": "Cancellation Policy: 2 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %",
2139 - "cancellationPolicy": {
2140 - "noShowChargeValue": 100.0,
2141 - "noShowChargeValueType": "%",
2142 - "earlyDepartureChargeValue": 100.0,
2143 - "earlyDepartureChargeValueType": "%",
2144 - "conditions": [
2145 - {
2146 - "timeunits": 2,
2147 - "timeunitType": "Day",
2148 - "timeOffsetTypeName": "Before Arrival",
2149 - "chargeValue": 1.0,
2150 - "chargeValueType": "Night"
2151 - }
2152 - ]
2153 - }
2154 - },
2155 - "flight": {
2156 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
2157 - "departureDate": "2024-05-25T00:00:00.000",
2158 - "returnDate": "2024-06-01T00:00:00.000",
2159 - "departureTicketsLeft": 48,
2160 - "returnTicketsLeft": 33,
2161 - "departureAvailabilityType": "FreeSale",
2162 - "returnAvailabilityType": "FreeSale",
2163 - "isTwoWay": true,
2164 - "sameBaggageForAll": false,
2165 - "totalBaggage": false,
2166 - "isBlock": true,
2167 - "class": "Economy",
2168 - "departureSegments": [
2169 - {
2170 - "airlineCode": "FZ",
2171 - "airlineName": "Fly Dubai",
2172 - "flightCode": "FZ1722",
2173 - "class": "Economy",
2174 - "lugageWeight": 20,
2175 - "handLugageWeight": 6,
2176 - "departureFlightDate": "2024-05-25T03:35:00.000",
2177 - "departureCountryName": "Kazakhstan",
2178 - "departureCityName": "Almaty",
2179 - "departureAirportCode": "ALA",
2180 - "departureAirportName": "Almaty Intl Airport",
2181 - "departureTerminalCode": "ALA",
2182 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
2183 - "arrivalCountryName": "United Arab Emirates",
2184 - "arrivalCityName": "Dubai",
2185 - "arrivalAirportCode": "DXB",
2186 - "arrivalAirportName": "Dubai Intl Airport",
2187 - "arrivalTerminalCode": "DXB3",
2188 - "flightDuration": "5h 35m"
2189 - }
2190 - ],
2191 - "returnSegments": [
2192 - {
2193 - "airlineCode": "FZ",
2194 - "airlineName": "Fly Dubai",
2195 - "flightCode": "FZ1721",
2196 - "class": "Economy",
2197 - "lugageWeight": 20,
2198 - "handLugageWeight": 6,
2199 - "departureFlightDate": "2024-06-01T21:25:00.000",
2200 - "departureCountryName": "United Arab Emirates",
2201 - "departureCityName": "Dubai",
2202 - "departureAirportCode": "DXB",
2203 - "departureAirportName": "Dubai Intl Airport",
2204 - "departureTerminalCode": "DXB3",
2205 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
2206 - "arrivalCountryName": "Kazakhstan",
2207 - "arrivalCityName": "Almaty",
2208 - "arrivalAirportCode": "ALA",
2209 - "arrivalAirportName": "Almaty Intl Airport",
2210 - "arrivalTerminalCode": "ALA",
2211 - "flightDuration": "3h 10m"
2212 - }
2213 - ],
2214 - "passengers": [
2215 - {
2216 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
2217 - "isAdult": true,
2218 - "selectedForwardBaggageCode": "INCLUDED",
2219 - "selectedBackwardBaggageCode": "INCLUDED",
2220 - "forwardBaggages": [
2221 - {
2222 - "baggageCode": "INCLUDED",
2223 - "description": "20 Kg Included",
2224 - "price": 0.0,
2225 - "currency": "USD",
2226 - "included": true
2227 - }
2228 - ],
2229 - "backwardBaggages": [
2230 - {
2231 - "baggageCode": "INCLUDED",
2232 - "description": "20 Kg Included",
2233 - "price": 0.0,
2234 - "currency": "USD",
2235 - "included": true
2236 - }
2237 - ]
2238 - },
2239 - {
2240 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
2241 - "isAdult": true,
2242 - "selectedForwardBaggageCode": "INCLUDED",
2243 - "selectedBackwardBaggageCode": "INCLUDED",
2244 - "forwardBaggages": [
2245 - {
2246 - "baggageCode": "INCLUDED",
2247 - "description": "20 Kg Included",
2248 - "price": 0.0,
2249 - "currency": "USD",
2250 - "included": true
2251 - }
2252 - ],
2253 - "backwardBaggages": [
2254 - {
2255 - "baggageCode": "INCLUDED",
2256 - "description": "20 Kg Included",
2257 - "price": 0.0,
2258 - "currency": "USD",
2259 - "included": true
2260 - }
2261 - ]
2262 - }
2263 - ]
2264 - },
2265 - "extraServices": [],
2266 - "insurancePrice": {
2267 - "name": "Medical INS (N10000)",
2268 - "price": 35.84,
2269 - "actualStartDate": "2024-05-25T00:00:00.000",
2270 - "actualEndDate": "2024-06-01T00:00:00.000",
2271 - "optional": false,
2272 - "includedInPackagePrice": true
2273 - },
2274 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:11",
2275 - "sortCheckInOut": "25.05.2024-01.06.2024",
2276 - "sortAirline": "fly dubai",
2277 - "sortHotelName": "reflections hotel",
2278 - "sortDetails": "ro",
2279 - "sortPlacement": "deluxe room dbl"
2280 - },
2281 - {
2282 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:fd0d752a-b5ac-4bf9-b46b-dc0bf3b2ca1e:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
2283 - "priceCurrency": "USD",
2284 - "totalPrice": 950.99,
2285 - "agentCommissionPercent": 0.0,
2286 - "agentCommissionAmount": 0.0,
2287 - "includedExtrasAmount": 0,
2288 - "priceDifference": 0,
2289 - "hotel": {
2290 - "hotelPriceId": "fd0d752a-b5ac-4bf9-b46b-dc0bf3b2ca1e",
2291 - "hotelName": "Concorde Palace Hotel Dubai",
2292 - "hotelCode": "519e3fe9-1ebd-4571-98dd-32e85f0c3640",
2293 - "nigths": 7,
2294 - "mealPlan": "RO",
2295 - "hotelClass": "3",
2296 - "hotelColor": "#000000",
2297 - "availabilityType": "FreeSale",
2298 - "availableRoomsCount": 0,
2299 - "fewRooms": true,
2300 - "roomCategoryCode": "354f39a8-2b3a-4d88-8ac8-e74ba98a4995",
2301 - "roomCategoryName": "Standard Room",
2302 - "placementTypeName": "DBL",
2303 - "checkInDate": "2024-05-25T00:00:00.000",
2304 - "checkOutDate": "2024-06-01T00:00:00.000",
2305 - "adults": 2,
2306 - "children": 0,
2307 - "districtUID": "0353f8b7-4649-41f7-97bc-a92c5a288992",
2308 - "districtName": "Bur Dubai",
2309 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
2310 - "cityName": "Dubai",
2311 - "countryCode": "AE",
2312 - "countryName": "United Arab Emirates",
2313 - "hasAlcohol": true,
2314 - "hasFreeWifi": true,
2315 - "hasMetro": false,
2316 - "hasPool": false,
2317 - "hasMall": false,
2318 - "infantMaxAge": 4.99,
2319 - "childMinAge": 5.0,
2320 - "childMaxAge": 11.99,
2321 - "teenMinAge": 0.0,
2322 - "teenMaxAge": 0.0,
2323 - "adultMinAge": 12.0,
2324 - "cancellationPolicyDescription": "Cancellation Policy: 2 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %",
2325 - "cancellationPolicy": {
2326 - "noShowChargeValue": 100.0,
2327 - "noShowChargeValueType": "%",
2328 - "earlyDepartureChargeValue": 100.0,
2329 - "earlyDepartureChargeValueType": "%",
2330 - "conditions": [
2331 - {
2332 - "timeunits": 2,
2333 - "timeunitType": "Day",
2334 - "timeOffsetTypeName": "Before Arrival",
2335 - "chargeValue": 100.0,
2336 - "chargeValueType": "%"
2337 - }
2338 - ]
2339 - }
2340 - },
2341 - "flight": {
2342 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
2343 - "departureDate": "2024-05-25T00:00:00.000",
2344 - "returnDate": "2024-06-01T00:00:00.000",
2345 - "departureTicketsLeft": 48,
2346 - "returnTicketsLeft": 33,
2347 - "departureAvailabilityType": "FreeSale",
2348 - "returnAvailabilityType": "FreeSale",
2349 - "isTwoWay": true,
2350 - "sameBaggageForAll": false,
2351 - "totalBaggage": false,
2352 - "isBlock": true,
2353 - "class": "Economy",
2354 - "departureSegments": [
2355 - {
2356 - "airlineCode": "FZ",
2357 - "airlineName": "Fly Dubai",
2358 - "flightCode": "FZ1722",
2359 - "class": "Economy",
2360 - "lugageWeight": 20,
2361 - "handLugageWeight": 6,
2362 - "departureFlightDate": "2024-05-25T03:35:00.000",
2363 - "departureCountryName": "Kazakhstan",
2364 - "departureCityName": "Almaty",
2365 - "departureAirportCode": "ALA",
2366 - "departureAirportName": "Almaty Intl Airport",
2367 - "departureTerminalCode": "ALA",
2368 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
2369 - "arrivalCountryName": "United Arab Emirates",
2370 - "arrivalCityName": "Dubai",
2371 - "arrivalAirportCode": "DXB",
2372 - "arrivalAirportName": "Dubai Intl Airport",
2373 - "arrivalTerminalCode": "DXB3",
2374 - "flightDuration": "5h 35m"
2375 - }
2376 - ],
2377 - "returnSegments": [
2378 - {
2379 - "airlineCode": "FZ",
2380 - "airlineName": "Fly Dubai",
2381 - "flightCode": "FZ1721",
2382 - "class": "Economy",
2383 - "lugageWeight": 20,
2384 - "handLugageWeight": 6,
2385 - "departureFlightDate": "2024-06-01T21:25:00.000",
2386 - "departureCountryName": "United Arab Emirates",
2387 - "departureCityName": "Dubai",
2388 - "departureAirportCode": "DXB",
2389 - "departureAirportName": "Dubai Intl Airport",
2390 - "departureTerminalCode": "DXB3",
2391 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
2392 - "arrivalCountryName": "Kazakhstan",
2393 - "arrivalCityName": "Almaty",
2394 - "arrivalAirportCode": "ALA",
2395 - "arrivalAirportName": "Almaty Intl Airport",
2396 - "arrivalTerminalCode": "ALA",
2397 - "flightDuration": "3h 10m"
2398 - }
2399 - ],
2400 - "passengers": [
2401 - {
2402 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
2403 - "isAdult": true,
2404 - "selectedForwardBaggageCode": "INCLUDED",
2405 - "selectedBackwardBaggageCode": "INCLUDED",
2406 - "forwardBaggages": [
2407 - {
2408 - "baggageCode": "INCLUDED",
2409 - "description": "20 Kg Included",
2410 - "price": 0.0,
2411 - "currency": "USD",
2412 - "included": true
2413 - }
2414 - ],
2415 - "backwardBaggages": [
2416 - {
2417 - "baggageCode": "INCLUDED",
2418 - "description": "20 Kg Included",
2419 - "price": 0.0,
2420 - "currency": "USD",
2421 - "included": true
2422 - }
2423 - ]
2424 - },
2425 - {
2426 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
2427 - "isAdult": true,
2428 - "selectedForwardBaggageCode": "INCLUDED",
2429 - "selectedBackwardBaggageCode": "INCLUDED",
2430 - "forwardBaggages": [
2431 - {
2432 - "baggageCode": "INCLUDED",
2433 - "description": "20 Kg Included",
2434 - "price": 0.0,
2435 - "currency": "USD",
2436 - "included": true
2437 - }
2438 - ],
2439 - "backwardBaggages": [
2440 - {
2441 - "baggageCode": "INCLUDED",
2442 - "description": "20 Kg Included",
2443 - "price": 0.0,
2444 - "currency": "USD",
2445 - "included": true
2446 - }
2447 - ]
2448 - }
2449 - ]
2450 - },
2451 - "extraServices": [],
2452 - "insurancePrice": {
2453 - "name": "Medical INS (N10000)",
2454 - "price": 35.84,
2455 - "actualStartDate": "2024-05-25T00:00:00.000",
2456 - "actualEndDate": "2024-06-01T00:00:00.000",
2457 - "optional": false,
2458 - "includedInPackagePrice": true
2459 - },
2460 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:12",
2461 - "sortCheckInOut": "25.05.2024-01.06.2024",
2462 - "sortAirline": "fly dubai",
2463 - "sortHotelName": "concorde palace hotel dubai",
2464 - "sortDetails": "ro",
2465 - "sortPlacement": "standard room dbl"
2466 - },
2467 - {
2468 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:f6fa63f7-25d2-440d-8c90-acd6965c5dbc:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
2469 - "priceCurrency": "USD",
2470 - "totalPrice": 950.99,
2471 - "agentCommissionPercent": 0.0,
2472 - "agentCommissionAmount": 0.0,
2473 - "includedExtrasAmount": 0,
2474 - "priceDifference": 0,
2475 - "hotel": {
2476 - "hotelPriceId": "f6fa63f7-25d2-440d-8c90-acd6965c5dbc",
2477 - "hotelName": "CityMax Bur Dubai",
2478 - "hotelCode": "fe6bf30c-73c2-490d-b704-7e172c4c089b",
2479 - "nigths": 7,
2480 - "mealPlan": "BB",
2481 - "hotelClass": "3",
2482 - "hotelColor": "#000000",
2483 - "availabilityType": "FreeSale",
2484 - "availableRoomsCount": 0,
2485 - "fewRooms": true,
2486 - "roomCategoryCode": "a1ef1c0c-7427-407e-a08e-791c44d50796",
2487 - "roomCategoryName": "Standard Room",
2488 - "placementTypeName": "DBL",
2489 - "checkInDate": "2024-05-25T00:00:00.000",
2490 - "checkOutDate": "2024-06-01T00:00:00.000",
2491 - "adults": 2,
2492 - "children": 0,
2493 - "districtUID": "0353f8b7-4649-41f7-97bc-a92c5a288992",
2494 - "districtName": "Bur Dubai",
2495 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
2496 - "cityName": "Dubai",
2497 - "countryCode": "AE",
2498 - "countryName": "United Arab Emirates",
2499 - "hasAlcohol": true,
2500 - "hasFreeWifi": true,
2501 - "hasMetro": true,
2502 - "hasPool": true,
2503 - "hasMall": false,
2504 - "infantMaxAge": 4.99,
2505 - "childMinAge": 5.0,
2506 - "childMaxAge": 11.99,
2507 - "teenMinAge": 0.0,
2508 - "teenMaxAge": 0.0,
2509 - "adultMinAge": 12.0,
2510 - "cancellationPolicyDescription": "Cancellation Policy: 3 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %",
2511 - "cancellationPolicy": {
2512 - "noShowChargeValue": 100.0,
2513 - "noShowChargeValueType": "%",
2514 - "earlyDepartureChargeValue": 100.0,
2515 - "earlyDepartureChargeValueType": "%",
2516 - "conditions": [
2517 - {
2518 - "timeunits": 3,
2519 - "timeunitType": "Day",
2520 - "timeOffsetTypeName": "Before Arrival",
2521 - "chargeValue": 1.0,
2522 - "chargeValueType": "Night"
2523 - }
2524 - ]
2525 - }
2526 - },
2527 - "flight": {
2528 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
2529 - "departureDate": "2024-05-25T00:00:00.000",
2530 - "returnDate": "2024-06-01T00:00:00.000",
2531 - "departureTicketsLeft": 48,
2532 - "returnTicketsLeft": 33,
2533 - "departureAvailabilityType": "FreeSale",
2534 - "returnAvailabilityType": "FreeSale",
2535 - "isTwoWay": true,
2536 - "sameBaggageForAll": false,
2537 - "totalBaggage": false,
2538 - "isBlock": true,
2539 - "class": "Economy",
2540 - "departureSegments": [
2541 - {
2542 - "airlineCode": "FZ",
2543 - "airlineName": "Fly Dubai",
2544 - "flightCode": "FZ1722",
2545 - "class": "Economy",
2546 - "lugageWeight": 20,
2547 - "handLugageWeight": 6,
2548 - "departureFlightDate": "2024-05-25T03:35:00.000",
2549 - "departureCountryName": "Kazakhstan",
2550 - "departureCityName": "Almaty",
2551 - "departureAirportCode": "ALA",
2552 - "departureAirportName": "Almaty Intl Airport",
2553 - "departureTerminalCode": "ALA",
2554 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
2555 - "arrivalCountryName": "United Arab Emirates",
2556 - "arrivalCityName": "Dubai",
2557 - "arrivalAirportCode": "DXB",
2558 - "arrivalAirportName": "Dubai Intl Airport",
2559 - "arrivalTerminalCode": "DXB3",
2560 - "flightDuration": "5h 35m"
2561 - }
2562 - ],
2563 - "returnSegments": [
2564 - {
2565 - "airlineCode": "FZ",
2566 - "airlineName": "Fly Dubai",
2567 - "flightCode": "FZ1721",
2568 - "class": "Economy",
2569 - "lugageWeight": 20,
2570 - "handLugageWeight": 6,
2571 - "departureFlightDate": "2024-06-01T21:25:00.000",
2572 - "departureCountryName": "United Arab Emirates",
2573 - "departureCityName": "Dubai",
2574 - "departureAirportCode": "DXB",
2575 - "departureAirportName": "Dubai Intl Airport",
2576 - "departureTerminalCode": "DXB3",
2577 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
2578 - "arrivalCountryName": "Kazakhstan",
2579 - "arrivalCityName": "Almaty",
2580 - "arrivalAirportCode": "ALA",
2581 - "arrivalAirportName": "Almaty Intl Airport",
2582 - "arrivalTerminalCode": "ALA",
2583 - "flightDuration": "3h 10m"
2584 - }
2585 - ],
2586 - "passengers": [
2587 - {
2588 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
2589 - "isAdult": true,
2590 - "selectedForwardBaggageCode": "INCLUDED",
2591 - "selectedBackwardBaggageCode": "INCLUDED",
2592 - "forwardBaggages": [
2593 - {
2594 - "baggageCode": "INCLUDED",
2595 - "description": "20 Kg Included",
2596 - "price": 0.0,
2597 - "currency": "USD",
2598 - "included": true
2599 - }
2600 - ],
2601 - "backwardBaggages": [
2602 - {
2603 - "baggageCode": "INCLUDED",
2604 - "description": "20 Kg Included",
2605 - "price": 0.0,
2606 - "currency": "USD",
2607 - "included": true
2608 - }
2609 - ]
2610 - },
2611 - {
2612 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
2613 - "isAdult": true,
2614 - "selectedForwardBaggageCode": "INCLUDED",
2615 - "selectedBackwardBaggageCode": "INCLUDED",
2616 - "forwardBaggages": [
2617 - {
2618 - "baggageCode": "INCLUDED",
2619 - "description": "20 Kg Included",
2620 - "price": 0.0,
2621 - "currency": "USD",
2622 - "included": true
2623 - }
2624 - ],
2625 - "backwardBaggages": [
2626 - {
2627 - "baggageCode": "INCLUDED",
2628 - "description": "20 Kg Included",
2629 - "price": 0.0,
2630 - "currency": "USD",
2631 - "included": true
2632 - }
2633 - ]
2634 - }
2635 - ]
2636 - },
2637 - "extraServices": [],
2638 - "insurancePrice": {
2639 - "name": "Medical INS (N10000)",
2640 - "price": 35.84,
2641 - "actualStartDate": "2024-05-25T00:00:00.000",
2642 - "actualEndDate": "2024-06-01T00:00:00.000",
2643 - "optional": false,
2644 - "includedInPackagePrice": true
2645 - },
2646 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:13",
2647 - "sortCheckInOut": "25.05.2024-01.06.2024",
2648 - "sortAirline": "fly dubai",
2649 - "sortHotelName": "citymax bur dubai",
2650 - "sortDetails": "bb",
2651 - "sortPlacement": "standard room dbl"
2652 - },
2653 - {
2654 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:28a7bc68-07b6-4401-af7a-f126d7c8eb7d:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
2655 - "priceCurrency": "USD",
2656 - "totalPrice": 950.99,
2657 - "agentCommissionPercent": 0.0,
2658 - "agentCommissionAmount": 0.0,
2659 - "includedExtrasAmount": 0,
2660 - "priceDifference": 0,
2661 - "hotel": {
2662 - "hotelPriceId": "28a7bc68-07b6-4401-af7a-f126d7c8eb7d",
2663 - "hotelName": "Pearl Swiss Hotel",
2664 - "hotelCode": "0991be88-373b-4e76-908b-0ba66307ef3e",
2665 - "nigths": 7,
2666 - "mealPlan": "RO",
2667 - "hotelClass": "4",
2668 - "hotelColor": "#000000",
2669 - "availabilityType": "FreeSale",
2670 - "availableRoomsCount": 0,
2671 - "fewRooms": true,
2672 - "roomCategoryCode": "0354ade3-baad-4a1a-a2e7-cd011afd68ba",
2673 - "roomCategoryName": "Superior (Standard) Room",
2674 - "placementTypeName": "DBL",
2675 - "checkInDate": "2024-05-25T00:00:00.000",
2676 - "checkOutDate": "2024-06-01T00:00:00.000",
2677 - "adults": 2,
2678 - "children": 0,
2679 - "districtUID": "aaff2238-fa72-4900-83f8-a16990415547",
2680 - "districtName": "Deira",
2681 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
2682 - "cityName": "Dubai",
2683 - "countryCode": "AE",
2684 - "countryName": "United Arab Emirates",
2685 - "hasAlcohol": false,
2686 - "hasFreeWifi": true,
2687 - "hasMetro": false,
2688 - "hasPool": true,
2689 - "hasMall": false,
2690 - "infantMaxAge": 4.99,
2691 - "childMinAge": 5.0,
2692 - "childMaxAge": 11.99,
2693 - "teenMinAge": 0.0,
2694 - "teenMaxAge": 0.0,
2695 - "adultMinAge": 12.0,
2696 - "cancellationPolicyDescription": "Cancellation Policy: 1 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %",
2697 - "cancellationPolicy": {
2698 - "noShowChargeValue": 100.0,
2699 - "noShowChargeValueType": "%",
2700 - "earlyDepartureChargeValue": 100.0,
2701 - "earlyDepartureChargeValueType": "%",
2702 - "conditions": [
2703 - {
2704 - "timeunits": 1,
2705 - "timeunitType": "Day",
2706 - "timeOffsetTypeName": "Before Arrival",
2707 - "chargeValue": 1.0,
2708 - "chargeValueType": "Night"
2709 - }
2710 - ]
2711 - }
2712 - },
2713 - "flight": {
2714 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
2715 - "departureDate": "2024-05-25T00:00:00.000",
2716 - "returnDate": "2024-06-01T00:00:00.000",
2717 - "departureTicketsLeft": 48,
2718 - "returnTicketsLeft": 33,
2719 - "departureAvailabilityType": "FreeSale",
2720 - "returnAvailabilityType": "FreeSale",
2721 - "isTwoWay": true,
2722 - "sameBaggageForAll": false,
2723 - "totalBaggage": false,
2724 - "isBlock": true,
2725 - "class": "Economy",
2726 - "departureSegments": [
2727 - {
2728 - "airlineCode": "FZ",
2729 - "airlineName": "Fly Dubai",
2730 - "flightCode": "FZ1722",
2731 - "class": "Economy",
2732 - "lugageWeight": 20,
2733 - "handLugageWeight": 6,
2734 - "departureFlightDate": "2024-05-25T03:35:00.000",
2735 - "departureCountryName": "Kazakhstan",
2736 - "departureCityName": "Almaty",
2737 - "departureAirportCode": "ALA",
2738 - "departureAirportName": "Almaty Intl Airport",
2739 - "departureTerminalCode": "ALA",
2740 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
2741 - "arrivalCountryName": "United Arab Emirates",
2742 - "arrivalCityName": "Dubai",
2743 - "arrivalAirportCode": "DXB",
2744 - "arrivalAirportName": "Dubai Intl Airport",
2745 - "arrivalTerminalCode": "DXB3",
2746 - "flightDuration": "5h 35m"
2747 - }
2748 - ],
2749 - "returnSegments": [
2750 - {
2751 - "airlineCode": "FZ",
2752 - "airlineName": "Fly Dubai",
2753 - "flightCode": "FZ1721",
2754 - "class": "Economy",
2755 - "lugageWeight": 20,
2756 - "handLugageWeight": 6,
2757 - "departureFlightDate": "2024-06-01T21:25:00.000",
2758 - "departureCountryName": "United Arab Emirates",
2759 - "departureCityName": "Dubai",
2760 - "departureAirportCode": "DXB",
2761 - "departureAirportName": "Dubai Intl Airport",
2762 - "departureTerminalCode": "DXB3",
2763 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
2764 - "arrivalCountryName": "Kazakhstan",
2765 - "arrivalCityName": "Almaty",
2766 - "arrivalAirportCode": "ALA",
2767 - "arrivalAirportName": "Almaty Intl Airport",
2768 - "arrivalTerminalCode": "ALA",
2769 - "flightDuration": "3h 10m"
2770 - }
2771 - ],
2772 - "passengers": [
2773 - {
2774 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
2775 - "isAdult": true,
2776 - "selectedForwardBaggageCode": "INCLUDED",
2777 - "selectedBackwardBaggageCode": "INCLUDED",
2778 - "forwardBaggages": [
2779 - {
2780 - "baggageCode": "INCLUDED",
2781 - "description": "20 Kg Included",
2782 - "price": 0.0,
2783 - "currency": "USD",
2784 - "included": true
2785 - }
2786 - ],
2787 - "backwardBaggages": [
2788 - {
2789 - "baggageCode": "INCLUDED",
2790 - "description": "20 Kg Included",
2791 - "price": 0.0,
2792 - "currency": "USD",
2793 - "included": true
2794 - }
2795 - ]
2796 - },
2797 - {
2798 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
2799 - "isAdult": true,
2800 - "selectedForwardBaggageCode": "INCLUDED",
2801 - "selectedBackwardBaggageCode": "INCLUDED",
2802 - "forwardBaggages": [
2803 - {
2804 - "baggageCode": "INCLUDED",
2805 - "description": "20 Kg Included",
2806 - "price": 0.0,
2807 - "currency": "USD",
2808 - "included": true
2809 - }
2810 - ],
2811 - "backwardBaggages": [
2812 - {
2813 - "baggageCode": "INCLUDED",
2814 - "description": "20 Kg Included",
2815 - "price": 0.0,
2816 - "currency": "USD",
2817 - "included": true
2818 - }
2819 - ]
2820 - }
2821 - ]
2822 - },
2823 - "extraServices": [],
2824 - "insurancePrice": {
2825 - "name": "Medical INS (N10000)",
2826 - "price": 35.84,
2827 - "actualStartDate": "2024-05-25T00:00:00.000",
2828 - "actualEndDate": "2024-06-01T00:00:00.000",
2829 - "optional": false,
2830 - "includedInPackagePrice": true
2831 - },
2832 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:14",
2833 - "sortCheckInOut": "25.05.2024-01.06.2024",
2834 - "sortAirline": "fly dubai",
2835 - "sortHotelName": "pearl swiss hotel",
2836 - "sortDetails": "ro",
2837 - "sortPlacement": "superior standard room dbl"
2838 - },
2839 - {
2840 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:1b727487-ed18-4dbc-83d7-4d1ca358c20f:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
2841 - "priceCurrency": "USD",
2842 - "totalPrice": 954.99,
2843 - "agentCommissionPercent": 0.0,
2844 - "agentCommissionAmount": 0.0,
2845 - "includedExtrasAmount": 0,
2846 - "priceDifference": 0,
2847 - "hotel": {
2848 - "hotelPriceId": "1b727487-ed18-4dbc-83d7-4d1ca358c20f",
2849 - "hotelName": "Red Castle Hotel Sharjah",
2850 - "hotelCode": "6cf843a8-6430-4d2a-a600-450925ed790f",
2851 - "nigths": 7,
2852 - "mealPlan": "RO",
2853 - "hotelClass": "4",
2854 - "hotelColor": "#000000",
2855 - "availabilityType": "FreeSale",
2856 - "availableRoomsCount": 0,
2857 - "fewRooms": true,
2858 - "roomCategoryCode": "afa5f047-ad92-4290-b06d-f5a44eed782e",
2859 - "roomCategoryName": "Deluxe Suite",
2860 - "placementTypeName": "DBL",
2861 - "checkInDate": "2024-05-25T00:00:00.000",
2862 - "checkOutDate": "2024-06-01T00:00:00.000",
2863 - "adults": 2,
2864 - "children": 0,
2865 - "districtUID": "7ac1bbc8-59ea-4977-b272-ed8553f94f9b",
2866 - "districtName": "Sharjah",
2867 - "cityUID": "f78ac3bc-f040-46d0-8319-2c52083080a6",
2868 - "cityName": "Sharjah",
2869 - "countryCode": "AE",
2870 - "countryName": "United Arab Emirates",
2871 - "hasAlcohol": true,
2872 - "hasFreeWifi": true,
2873 - "hasMetro": false,
2874 - "hasPool": true,
2875 - "hasMall": false,
2876 - "infantMaxAge": 5.99,
2877 - "childMinAge": 6.0,
2878 - "childMaxAge": 11.99,
2879 - "teenMinAge": 0.0,
2880 - "teenMaxAge": 0.0,
2881 - "adultMinAge": 12.0,
2882 - "cancellationPolicyDescription": "Cancellation Policy: 2 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %",
2883 - "cancellationPolicy": {
2884 - "noShowChargeValue": 100.0,
2885 - "noShowChargeValueType": "%",
2886 - "earlyDepartureChargeValue": 100.0,
2887 - "earlyDepartureChargeValueType": "%",
2888 - "conditions": [
2889 - {
2890 - "timeunits": 2,
2891 - "timeunitType": "Day",
2892 - "timeOffsetTypeName": "Before Arrival",
2893 - "chargeValue": 100.0,
2894 - "chargeValueType": "%"
2895 - }
2896 - ]
2897 - }
2898 - },
2899 - "flight": {
2900 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
2901 - "departureDate": "2024-05-25T00:00:00.000",
2902 - "returnDate": "2024-06-01T00:00:00.000",
2903 - "departureTicketsLeft": 48,
2904 - "returnTicketsLeft": 33,
2905 - "departureAvailabilityType": "FreeSale",
2906 - "returnAvailabilityType": "FreeSale",
2907 - "isTwoWay": true,
2908 - "sameBaggageForAll": false,
2909 - "totalBaggage": false,
2910 - "isBlock": true,
2911 - "class": "Economy",
2912 - "departureSegments": [
2913 - {
2914 - "airlineCode": "FZ",
2915 - "airlineName": "Fly Dubai",
2916 - "flightCode": "FZ1722",
2917 - "class": "Economy",
2918 - "lugageWeight": 20,
2919 - "handLugageWeight": 6,
2920 - "departureFlightDate": "2024-05-25T03:35:00.000",
2921 - "departureCountryName": "Kazakhstan",
2922 - "departureCityName": "Almaty",
2923 - "departureAirportCode": "ALA",
2924 - "departureAirportName": "Almaty Intl Airport",
2925 - "departureTerminalCode": "ALA",
2926 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
2927 - "arrivalCountryName": "United Arab Emirates",
2928 - "arrivalCityName": "Dubai",
2929 - "arrivalAirportCode": "DXB",
2930 - "arrivalAirportName": "Dubai Intl Airport",
2931 - "arrivalTerminalCode": "DXB3",
2932 - "flightDuration": "5h 35m"
2933 - }
2934 - ],
2935 - "returnSegments": [
2936 - {
2937 - "airlineCode": "FZ",
2938 - "airlineName": "Fly Dubai",
2939 - "flightCode": "FZ1721",
2940 - "class": "Economy",
2941 - "lugageWeight": 20,
2942 - "handLugageWeight": 6,
2943 - "departureFlightDate": "2024-06-01T21:25:00.000",
2944 - "departureCountryName": "United Arab Emirates",
2945 - "departureCityName": "Dubai",
2946 - "departureAirportCode": "DXB",
2947 - "departureAirportName": "Dubai Intl Airport",
2948 - "departureTerminalCode": "DXB3",
2949 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
2950 - "arrivalCountryName": "Kazakhstan",
2951 - "arrivalCityName": "Almaty",
2952 - "arrivalAirportCode": "ALA",
2953 - "arrivalAirportName": "Almaty Intl Airport",
2954 - "arrivalTerminalCode": "ALA",
2955 - "flightDuration": "3h 10m"
2956 - }
2957 - ],
2958 - "passengers": [
2959 - {
2960 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
2961 - "isAdult": true,
2962 - "selectedForwardBaggageCode": "INCLUDED",
2963 - "selectedBackwardBaggageCode": "INCLUDED",
2964 - "forwardBaggages": [
2965 - {
2966 - "baggageCode": "INCLUDED",
2967 - "description": "20 Kg Included",
2968 - "price": 0.0,
2969 - "currency": "USD",
2970 - "included": true
2971 - }
2972 - ],
2973 - "backwardBaggages": [
2974 - {
2975 - "baggageCode": "INCLUDED",
2976 - "description": "20 Kg Included",
2977 - "price": 0.0,
2978 - "currency": "USD",
2979 - "included": true
2980 - }
2981 - ]
2982 - },
2983 - {
2984 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
2985 - "isAdult": true,
2986 - "selectedForwardBaggageCode": "INCLUDED",
2987 - "selectedBackwardBaggageCode": "INCLUDED",
2988 - "forwardBaggages": [
2989 - {
2990 - "baggageCode": "INCLUDED",
2991 - "description": "20 Kg Included",
2992 - "price": 0.0,
2993 - "currency": "USD",
2994 - "included": true
2995 - }
2996 - ],
2997 - "backwardBaggages": [
2998 - {
2999 - "baggageCode": "INCLUDED",
3000 - "description": "20 Kg Included",
3001 - "price": 0.0,
3002 - "currency": "USD",
3003 - "included": true
3004 - }
3005 - ]
3006 - }
3007 - ]
3008 - },
3009 - "extraServices": [],
3010 - "insurancePrice": {
3011 - "name": "Medical INS (N10000)",
3012 - "price": 35.84,
3013 - "actualStartDate": "2024-05-25T00:00:00.000",
3014 - "actualEndDate": "2024-06-01T00:00:00.000",
3015 - "optional": false,
3016 - "includedInPackagePrice": true
3017 - },
3018 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:15",
3019 - "sortCheckInOut": "25.05.2024-01.06.2024",
3020 - "sortAirline": "fly dubai",
3021 - "sortHotelName": "red castle hotel sharjah",
3022 - "sortDetails": "ro",
3023 - "sortPlacement": "deluxe suite dbl"
3024 - },
3025 - {
3026 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:a8f703f8-207f-4e48-89f8-b03720d83da2:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
3027 - "priceCurrency": "USD",
3028 - "totalPrice": 955.47,
3029 - "agentCommissionPercent": 0.0,
3030 - "agentCommissionAmount": 0.0,
3031 - "includedExtrasAmount": 0,
3032 - "priceDifference": 0,
3033 - "hotel": {
3034 - "hotelPriceId": "a8f703f8-207f-4e48-89f8-b03720d83da2",
3035 - "hotelName": "Concorde Inn Hotel",
3036 - "hotelCode": "27079d64-fd42-4880-9351-362a90207987",
3037 - "nigths": 7,
3038 - "mealPlan": "RO",
3039 - "hotelClass": "2",
3040 - "hotelColor": "#000000",
3041 - "availabilityType": "FreeSale",
3042 - "availableRoomsCount": 0,
3043 - "fewRooms": true,
3044 - "roomCategoryCode": "2af2f9cf-90f9-4045-8a27-2808f860cfdb",
3045 - "roomCategoryName": "Standard Room",
3046 - "placementTypeName": "DBL",
3047 - "checkInDate": "2024-05-25T00:00:00.000",
3048 - "checkOutDate": "2024-06-01T00:00:00.000",
3049 - "adults": 2,
3050 - "children": 0,
3051 - "districtUID": "0353f8b7-4649-41f7-97bc-a92c5a288992",
3052 - "districtName": "Bur Dubai",
3053 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
3054 - "cityName": "Dubai",
3055 - "countryCode": "AE",
3056 - "countryName": "United Arab Emirates",
3057 - "hasAlcohol": false,
3058 - "hasFreeWifi": true,
3059 - "hasMetro": false,
3060 - "hasPool": false,
3061 - "hasMall": false,
3062 - "infantMaxAge": 4.99,
3063 - "childMinAge": 5.0,
3064 - "childMaxAge": 10.99,
3065 - "teenMinAge": 0.0,
3066 - "teenMaxAge": 0.0,
3067 - "adultMinAge": 11.0,
3068 - "cancellationPolicyDescription": "Cancellation Policy: Non refundable",
3069 - "cancellationPolicy": {
3070 - "noShowChargeValue": 100.0,
3071 - "noShowChargeValueType": "%",
3072 - "earlyDepartureChargeValue": 100.0,
3073 - "earlyDepartureChargeValueType": "%",
3074 - "conditions": [
3075 - {
3076 - "timeunits": 365,
3077 - "timeunitType": "Day",
3078 - "timeOffsetTypeName": "Before Arrival",
3079 - "chargeValue": 100.0,
3080 - "chargeValueType": "%"
3081 - }
3082 - ]
3083 - }
3084 - },
3085 - "flight": {
3086 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
3087 - "departureDate": "2024-05-25T00:00:00.000",
3088 - "returnDate": "2024-06-01T00:00:00.000",
3089 - "departureTicketsLeft": 48,
3090 - "returnTicketsLeft": 33,
3091 - "departureAvailabilityType": "FreeSale",
3092 - "returnAvailabilityType": "FreeSale",
3093 - "isTwoWay": true,
3094 - "sameBaggageForAll": false,
3095 - "totalBaggage": false,
3096 - "isBlock": true,
3097 - "class": "Economy",
3098 - "departureSegments": [
3099 - {
3100 - "airlineCode": "FZ",
3101 - "airlineName": "Fly Dubai",
3102 - "flightCode": "FZ1722",
3103 - "class": "Economy",
3104 - "lugageWeight": 20,
3105 - "handLugageWeight": 6,
3106 - "departureFlightDate": "2024-05-25T03:35:00.000",
3107 - "departureCountryName": "Kazakhstan",
3108 - "departureCityName": "Almaty",
3109 - "departureAirportCode": "ALA",
3110 - "departureAirportName": "Almaty Intl Airport",
3111 - "departureTerminalCode": "ALA",
3112 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
3113 - "arrivalCountryName": "United Arab Emirates",
3114 - "arrivalCityName": "Dubai",
3115 - "arrivalAirportCode": "DXB",
3116 - "arrivalAirportName": "Dubai Intl Airport",
3117 - "arrivalTerminalCode": "DXB3",
3118 - "flightDuration": "5h 35m"
3119 - }
3120 - ],
3121 - "returnSegments": [
3122 - {
3123 - "airlineCode": "FZ",
3124 - "airlineName": "Fly Dubai",
3125 - "flightCode": "FZ1721",
3126 - "class": "Economy",
3127 - "lugageWeight": 20,
3128 - "handLugageWeight": 6,
3129 - "departureFlightDate": "2024-06-01T21:25:00.000",
3130 - "departureCountryName": "United Arab Emirates",
3131 - "departureCityName": "Dubai",
3132 - "departureAirportCode": "DXB",
3133 - "departureAirportName": "Dubai Intl Airport",
3134 - "departureTerminalCode": "DXB3",
3135 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
3136 - "arrivalCountryName": "Kazakhstan",
3137 - "arrivalCityName": "Almaty",
3138 - "arrivalAirportCode": "ALA",
3139 - "arrivalAirportName": "Almaty Intl Airport",
3140 - "arrivalTerminalCode": "ALA",
3141 - "flightDuration": "3h 10m"
3142 - }
3143 - ],
3144 - "passengers": [
3145 - {
3146 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
3147 - "isAdult": true,
3148 - "selectedForwardBaggageCode": "INCLUDED",
3149 - "selectedBackwardBaggageCode": "INCLUDED",
3150 - "forwardBaggages": [
3151 - {
3152 - "baggageCode": "INCLUDED",
3153 - "description": "20 Kg Included",
3154 - "price": 0.0,
3155 - "currency": "USD",
3156 - "included": true
3157 - }
3158 - ],
3159 - "backwardBaggages": [
3160 - {
3161 - "baggageCode": "INCLUDED",
3162 - "description": "20 Kg Included",
3163 - "price": 0.0,
3164 - "currency": "USD",
3165 - "included": true
3166 - }
3167 - ]
3168 - },
3169 - {
3170 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
3171 - "isAdult": true,
3172 - "selectedForwardBaggageCode": "INCLUDED",
3173 - "selectedBackwardBaggageCode": "INCLUDED",
3174 - "forwardBaggages": [
3175 - {
3176 - "baggageCode": "INCLUDED",
3177 - "description": "20 Kg Included",
3178 - "price": 0.0,
3179 - "currency": "USD",
3180 - "included": true
3181 - }
3182 - ],
3183 - "backwardBaggages": [
3184 - {
3185 - "baggageCode": "INCLUDED",
3186 - "description": "20 Kg Included",
3187 - "price": 0.0,
3188 - "currency": "USD",
3189 - "included": true
3190 - }
3191 - ]
3192 - }
3193 - ]
3194 - },
3195 - "extraServices": [],
3196 - "insurancePrice": {
3197 - "name": "Medical INS (N10000)",
3198 - "price": 35.84,
3199 - "actualStartDate": "2024-05-25T00:00:00.000",
3200 - "actualEndDate": "2024-06-01T00:00:00.000",
3201 - "optional": false,
3202 - "includedInPackagePrice": true
3203 - },
3204 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:16",
3205 - "sortCheckInOut": "25.05.2024-01.06.2024",
3206 - "sortAirline": "fly dubai",
3207 - "sortHotelName": "concorde inn hotel",
3208 - "sortDetails": "ro",
3209 - "sortPlacement": "standard room dbl"
3210 - },
3211 - {
3212 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:5f6de21e-6d76-4120-b9d4-c1356c6e3a06:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
3213 - "priceCurrency": "USD",
3214 - "totalPrice": 960.58,
3215 - "agentCommissionPercent": 0.0,
3216 - "agentCommissionAmount": 0.0,
3217 - "includedExtrasAmount": 0,
3218 - "priceDifference": 0,
3219 - "hotel": {
3220 - "hotelPriceId": "5f6de21e-6d76-4120-b9d4-c1356c6e3a06",
3221 - "hotelName": "Kingsgate Canal by Millennium Hotel",
3222 - "hotelCode": "5e92da79-14ea-4c74-8004-8b57f6ad77de",
3223 - "nigths": 7,
3224 - "mealPlan": "RO",
3225 - "hotelClass": "3",
3226 - "hotelColor": "#000000",
3227 - "availabilityType": "FreeSale",
3228 - "availableRoomsCount": 0,
3229 - "fewRooms": true,
3230 - "roomCategoryCode": "22438123-aecc-4f61-9cd3-ab2c7de4a11f",
3231 - "roomCategoryName": "Standard Room City View",
3232 - "placementTypeName": "DBL",
3233 - "checkInDate": "2024-05-25T00:00:00.000",
3234 - "checkOutDate": "2024-06-01T00:00:00.000",
3235 - "adults": 2,
3236 - "children": 0,
3237 - "districtUID": "b152b6e9-e172-4ff5-b2df-3703b783cdf9",
3238 - "districtName": "Al Jaddaf",
3239 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
3240 - "cityName": "Dubai",
3241 - "countryCode": "AE",
3242 - "countryName": "United Arab Emirates",
3243 - "hasAlcohol": false,
3244 - "hasFreeWifi": true,
3245 - "hasMetro": false,
3246 - "hasPool": false,
3247 - "hasMall": false,
3248 - "infantMaxAge": 5.99,
3249 - "childMinAge": 6.0,
3250 - "childMaxAge": 11.99,
3251 - "teenMinAge": 0.0,
3252 - "teenMaxAge": 0.0,
3253 - "adultMinAge": 12.0,
3254 - "cancellationPolicyDescription": "Cancellation Policy: Non refundable",
3255 - "cancellationPolicy": {
3256 - "noShowChargeValue": 100.0,
3257 - "noShowChargeValueType": "%",
3258 - "earlyDepartureChargeValue": 100.0,
3259 - "earlyDepartureChargeValueType": "%",
3260 - "conditions": [
3261 - {
3262 - "timeunits": 365,
3263 - "timeunitType": "Day",
3264 - "timeOffsetTypeName": "Before Arrival",
3265 - "chargeValue": 100.0,
3266 - "chargeValueType": "%"
3267 - }
3268 - ]
3269 - }
3270 - },
3271 - "flight": {
3272 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
3273 - "departureDate": "2024-05-25T00:00:00.000",
3274 - "returnDate": "2024-06-01T00:00:00.000",
3275 - "departureTicketsLeft": 48,
3276 - "returnTicketsLeft": 33,
3277 - "departureAvailabilityType": "FreeSale",
3278 - "returnAvailabilityType": "FreeSale",
3279 - "isTwoWay": true,
3280 - "sameBaggageForAll": false,
3281 - "totalBaggage": false,
3282 - "isBlock": true,
3283 - "class": "Economy",
3284 - "departureSegments": [
3285 - {
3286 - "airlineCode": "FZ",
3287 - "airlineName": "Fly Dubai",
3288 - "flightCode": "FZ1722",
3289 - "class": "Economy",
3290 - "lugageWeight": 20,
3291 - "handLugageWeight": 6,
3292 - "departureFlightDate": "2024-05-25T03:35:00.000",
3293 - "departureCountryName": "Kazakhstan",
3294 - "departureCityName": "Almaty",
3295 - "departureAirportCode": "ALA",
3296 - "departureAirportName": "Almaty Intl Airport",
3297 - "departureTerminalCode": "ALA",
3298 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
3299 - "arrivalCountryName": "United Arab Emirates",
3300 - "arrivalCityName": "Dubai",
3301 - "arrivalAirportCode": "DXB",
3302 - "arrivalAirportName": "Dubai Intl Airport",
3303 - "arrivalTerminalCode": "DXB3",
3304 - "flightDuration": "5h 35m"
3305 - }
3306 - ],
3307 - "returnSegments": [
3308 - {
3309 - "airlineCode": "FZ",
3310 - "airlineName": "Fly Dubai",
3311 - "flightCode": "FZ1721",
3312 - "class": "Economy",
3313 - "lugageWeight": 20,
3314 - "handLugageWeight": 6,
3315 - "departureFlightDate": "2024-06-01T21:25:00.000",
3316 - "departureCountryName": "United Arab Emirates",
3317 - "departureCityName": "Dubai",
3318 - "departureAirportCode": "DXB",
3319 - "departureAirportName": "Dubai Intl Airport",
3320 - "departureTerminalCode": "DXB3",
3321 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
3322 - "arrivalCountryName": "Kazakhstan",
3323 - "arrivalCityName": "Almaty",
3324 - "arrivalAirportCode": "ALA",
3325 - "arrivalAirportName": "Almaty Intl Airport",
3326 - "arrivalTerminalCode": "ALA",
3327 - "flightDuration": "3h 10m"
3328 - }
3329 - ],
3330 - "passengers": [
3331 - {
3332 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
3333 - "isAdult": true,
3334 - "selectedForwardBaggageCode": "INCLUDED",
3335 - "selectedBackwardBaggageCode": "INCLUDED",
3336 - "forwardBaggages": [
3337 - {
3338 - "baggageCode": "INCLUDED",
3339 - "description": "20 Kg Included",
3340 - "price": 0.0,
3341 - "currency": "USD",
3342 - "included": true
3343 - }
3344 - ],
3345 - "backwardBaggages": [
3346 - {
3347 - "baggageCode": "INCLUDED",
3348 - "description": "20 Kg Included",
3349 - "price": 0.0,
3350 - "currency": "USD",
3351 - "included": true
3352 - }
3353 - ]
3354 - },
3355 - {
3356 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
3357 - "isAdult": true,
3358 - "selectedForwardBaggageCode": "INCLUDED",
3359 - "selectedBackwardBaggageCode": "INCLUDED",
3360 - "forwardBaggages": [
3361 - {
3362 - "baggageCode": "INCLUDED",
3363 - "description": "20 Kg Included",
3364 - "price": 0.0,
3365 - "currency": "USD",
3366 - "included": true
3367 - }
3368 - ],
3369 - "backwardBaggages": [
3370 - {
3371 - "baggageCode": "INCLUDED",
3372 - "description": "20 Kg Included",
3373 - "price": 0.0,
3374 - "currency": "USD",
3375 - "included": true
3376 - }
3377 - ]
3378 - }
3379 - ]
3380 - },
3381 - "extraServices": [],
3382 - "insurancePrice": {
3383 - "name": "Medical INS (N10000)",
3384 - "price": 35.84,
3385 - "actualStartDate": "2024-05-25T00:00:00.000",
3386 - "actualEndDate": "2024-06-01T00:00:00.000",
3387 - "optional": false,
3388 - "includedInPackagePrice": true
3389 - },
3390 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:17",
3391 - "sortCheckInOut": "25.05.2024-01.06.2024",
3392 - "sortAirline": "fly dubai",
3393 - "sortHotelName": "kingsgate canal by millennium hotel",
3394 - "sortDetails": "ro",
3395 - "sortPlacement": "standard room city view dbl"
3396 - },
3397 - {
3398 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:92bcda0e-333a-4daa-976e-8eef81653c01:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
3399 - "priceCurrency": "USD",
3400 - "totalPrice": 960.58,
3401 - "agentCommissionPercent": 0.0,
3402 - "agentCommissionAmount": 0.0,
3403 - "includedExtrasAmount": 0,
3404 - "priceDifference": 0,
3405 - "hotel": {
3406 - "hotelPriceId": "92bcda0e-333a-4daa-976e-8eef81653c01",
3407 - "hotelName": "Aavri Hotel",
3408 - "hotelCode": "461f9ba6-3fe7-4668-aef0-ddf3e9b458dd",
3409 - "nigths": 7,
3410 - "mealPlan": "RO",
3411 - "hotelClass": "4",
3412 - "hotelColor": "#000000",
3413 - "availabilityType": "OnRequest",
3414 - "availableRoomsCount": 0,
3415 - "fewRooms": true,
3416 - "roomCategoryCode": "590e8140-20fd-4a8f-8e6c-cfd9919935a3",
3417 - "roomCategoryName": "Superior Room",
3418 - "placementTypeName": "DBL",
3419 - "checkInDate": "2024-05-25T00:00:00.000",
3420 - "checkOutDate": "2024-06-01T00:00:00.000",
3421 - "adults": 2,
3422 - "children": 0,
3423 - "districtUID": "aaff2238-fa72-4900-83f8-a16990415547",
3424 - "districtName": "Deira",
3425 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
3426 - "cityName": "Dubai",
3427 - "countryCode": "AE",
3428 - "countryName": "United Arab Emirates",
3429 - "hasAlcohol": false,
3430 - "hasFreeWifi": true,
3431 - "hasMetro": false,
3432 - "hasPool": true,
3433 - "hasMall": false,
3434 - "infantMaxAge": 5.99,
3435 - "childMinAge": 6.0,
3436 - "childMaxAge": 11.99,
3437 - "teenMinAge": 0.0,
3438 - "teenMaxAge": 0.0,
3439 - "adultMinAge": 12.0,
3440 - "cancellationPolicyDescription": "Cancellation Policy: Non refundable",
3441 - "cancellationPolicy": {
3442 - "noShowChargeValue": 100.0,
3443 - "noShowChargeValueType": "%",
3444 - "earlyDepartureChargeValue": 100.0,
3445 - "earlyDepartureChargeValueType": "%",
3446 - "conditions": [
3447 - {
3448 - "timeunits": 365,
3449 - "timeunitType": "Day",
3450 - "timeOffsetTypeName": "Before Arrival",
3451 - "chargeValue": 100.0,
3452 - "chargeValueType": "%"
3453 - }
3454 - ]
3455 - }
3456 - },
3457 - "flight": {
3458 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
3459 - "departureDate": "2024-05-25T00:00:00.000",
3460 - "returnDate": "2024-06-01T00:00:00.000",
3461 - "departureTicketsLeft": 48,
3462 - "returnTicketsLeft": 33,
3463 - "departureAvailabilityType": "FreeSale",
3464 - "returnAvailabilityType": "FreeSale",
3465 - "isTwoWay": true,
3466 - "sameBaggageForAll": false,
3467 - "totalBaggage": false,
3468 - "isBlock": true,
3469 - "class": "Economy",
3470 - "departureSegments": [
3471 - {
3472 - "airlineCode": "FZ",
3473 - "airlineName": "Fly Dubai",
3474 - "flightCode": "FZ1722",
3475 - "class": "Economy",
3476 - "lugageWeight": 20,
3477 - "handLugageWeight": 6,
3478 - "departureFlightDate": "2024-05-25T03:35:00.000",
3479 - "departureCountryName": "Kazakhstan",
3480 - "departureCityName": "Almaty",
3481 - "departureAirportCode": "ALA",
3482 - "departureAirportName": "Almaty Intl Airport",
3483 - "departureTerminalCode": "ALA",
3484 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
3485 - "arrivalCountryName": "United Arab Emirates",
3486 - "arrivalCityName": "Dubai",
3487 - "arrivalAirportCode": "DXB",
3488 - "arrivalAirportName": "Dubai Intl Airport",
3489 - "arrivalTerminalCode": "DXB3",
3490 - "flightDuration": "5h 35m"
3491 - }
3492 - ],
3493 - "returnSegments": [
3494 - {
3495 - "airlineCode": "FZ",
3496 - "airlineName": "Fly Dubai",
3497 - "flightCode": "FZ1721",
3498 - "class": "Economy",
3499 - "lugageWeight": 20,
3500 - "handLugageWeight": 6,
3501 - "departureFlightDate": "2024-06-01T21:25:00.000",
3502 - "departureCountryName": "United Arab Emirates",
3503 - "departureCityName": "Dubai",
3504 - "departureAirportCode": "DXB",
3505 - "departureAirportName": "Dubai Intl Airport",
3506 - "departureTerminalCode": "DXB3",
3507 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
3508 - "arrivalCountryName": "Kazakhstan",
3509 - "arrivalCityName": "Almaty",
3510 - "arrivalAirportCode": "ALA",
3511 - "arrivalAirportName": "Almaty Intl Airport",
3512 - "arrivalTerminalCode": "ALA",
3513 - "flightDuration": "3h 10m"
3514 - }
3515 - ],
3516 - "passengers": [
3517 - {
3518 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
3519 - "isAdult": true,
3520 - "selectedForwardBaggageCode": "INCLUDED",
3521 - "selectedBackwardBaggageCode": "INCLUDED",
3522 - "forwardBaggages": [
3523 - {
3524 - "baggageCode": "INCLUDED",
3525 - "description": "20 Kg Included",
3526 - "price": 0.0,
3527 - "currency": "USD",
3528 - "included": true
3529 - }
3530 - ],
3531 - "backwardBaggages": [
3532 - {
3533 - "baggageCode": "INCLUDED",
3534 - "description": "20 Kg Included",
3535 - "price": 0.0,
3536 - "currency": "USD",
3537 - "included": true
3538 - }
3539 - ]
3540 - },
3541 - {
3542 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
3543 - "isAdult": true,
3544 - "selectedForwardBaggageCode": "INCLUDED",
3545 - "selectedBackwardBaggageCode": "INCLUDED",
3546 - "forwardBaggages": [
3547 - {
3548 - "baggageCode": "INCLUDED",
3549 - "description": "20 Kg Included",
3550 - "price": 0.0,
3551 - "currency": "USD",
3552 - "included": true
3553 - }
3554 - ],
3555 - "backwardBaggages": [
3556 - {
3557 - "baggageCode": "INCLUDED",
3558 - "description": "20 Kg Included",
3559 - "price": 0.0,
3560 - "currency": "USD",
3561 - "included": true
3562 - }
3563 - ]
3564 - }
3565 - ]
3566 - },
3567 - "extraServices": [],
3568 - "insurancePrice": {
3569 - "name": "Medical INS (N10000)",
3570 - "price": 35.84,
3571 - "actualStartDate": "2024-05-25T00:00:00.000",
3572 - "actualEndDate": "2024-06-01T00:00:00.000",
3573 - "optional": false,
3574 - "includedInPackagePrice": true
3575 - },
3576 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:18",
3577 - "sortCheckInOut": "25.05.2024-01.06.2024",
3578 - "sortAirline": "fly dubai",
3579 - "sortHotelName": "aavri hotel",
3580 - "sortDetails": "ro",
3581 - "sortPlacement": "superior room dbl"
3582 - },
3583 - {
3584 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:7b0d97af-7b56-4d83-880a-32bb55b045df:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
3585 - "priceCurrency": "USD",
3586 - "totalPrice": 960.97,
3587 - "agentCommissionPercent": 0.0,
3588 - "agentCommissionAmount": 0.0,
3589 - "includedExtrasAmount": 0,
3590 - "priceDifference": 0,
3591 - "hotel": {
3592 - "hotelPriceId": "7b0d97af-7b56-4d83-880a-32bb55b045df",
3593 - "hotelName": "Arabian Park Edge by Rotana",
3594 - "hotelCode": "HYQDXBAPNUG",
3595 - "nigths": 7,
3596 - "mealPlan": "RO",
3597 - "hotelClass": "3",
3598 - "hotelColor": "#228B22",
3599 - "availabilityType": "FreeSale",
3600 - "availableRoomsCount": 0,
3601 - "fewRooms": true,
3602 - "roomCategoryCode": "C3T",
3603 - "roomCategoryName": "City View Room - Twin Beds",
3604 - "placementTypeName": "2 Adults",
3605 - "placementDescription": "O18-Saver O18SAVER-RO",
3606 - "checkInDate": "2024-05-25T00:00:00.000",
3607 - "checkOutDate": "2024-06-01T00:00:00.000",
3608 - "adults": 2,
3609 - "children": 0,
3610 - "districtUID": "b152b6e9-e172-4ff5-b2df-3703b783cdf9",
3611 - "districtName": "Al Jaddaf",
3612 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
3613 - "cityName": "Dubai",
3614 - "countryCode": "AE",
3615 - "countryName": "United Arab Emirates",
3616 - "hasAlcohol": true,
3617 - "hasFreeWifi": true,
3618 - "hasMetro": true,
3619 - "hasPool": true,
3620 - "hasMall": false,
3621 - "infantMaxAge": 1.99,
3622 - "childMinAge": 2.0,
3623 - "childMaxAge": 11.99,
3624 - "teenMinAge": 0.0,
3625 - "teenMaxAge": 0.0,
3626 - "adultMinAge": 12.0,
3627 - "cancellationPolicyDescription": "Cancellation Policy: Free cancellation, Early Departure: 100.00 %, NoShow: 100.00 %",
3628 - "cancellationPolicy": {
3629 - "noShowChargeValue": 100,
3630 - "noShowChargeValueType": "%",
3631 - "earlyDepartureChargeValue": 100,
3632 - "earlyDepartureChargeValueType": "%",
3633 - "conditions": [
3634 - {
3635 - "timeunits": 0,
3636 - "timeunitType": "Day",
3637 - "timeOffsetTypeName": "Before Arrival",
3638 - "chargeValue": 0,
3639 - "chargeValueType": "%"
3640 - }
3641 - ]
3642 - }
3643 - },
3644 - "flight": {
3645 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
3646 - "departureDate": "2024-05-25T00:00:00.000",
3647 - "returnDate": "2024-06-01T00:00:00.000",
3648 - "departureTicketsLeft": 48,
3649 - "returnTicketsLeft": 33,
3650 - "departureAvailabilityType": "FreeSale",
3651 - "returnAvailabilityType": "FreeSale",
3652 - "isTwoWay": true,
3653 - "sameBaggageForAll": false,
3654 - "totalBaggage": false,
3655 - "isBlock": true,
3656 - "class": "Economy",
3657 - "departureSegments": [
3658 - {
3659 - "airlineCode": "FZ",
3660 - "airlineName": "Fly Dubai",
3661 - "flightCode": "FZ1722",
3662 - "class": "Economy",
3663 - "lugageWeight": 20,
3664 - "handLugageWeight": 6,
3665 - "departureFlightDate": "2024-05-25T03:35:00.000",
3666 - "departureCountryName": "Kazakhstan",
3667 - "departureCityName": "Almaty",
3668 - "departureAirportCode": "ALA",
3669 - "departureAirportName": "Almaty Intl Airport",
3670 - "departureTerminalCode": "ALA",
3671 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
3672 - "arrivalCountryName": "United Arab Emirates",
3673 - "arrivalCityName": "Dubai",
3674 - "arrivalAirportCode": "DXB",
3675 - "arrivalAirportName": "Dubai Intl Airport",
3676 - "arrivalTerminalCode": "DXB3",
3677 - "flightDuration": "5h 35m"
3678 - }
3679 - ],
3680 - "returnSegments": [
3681 - {
3682 - "airlineCode": "FZ",
3683 - "airlineName": "Fly Dubai",
3684 - "flightCode": "FZ1721",
3685 - "class": "Economy",
3686 - "lugageWeight": 20,
3687 - "handLugageWeight": 6,
3688 - "departureFlightDate": "2024-06-01T21:25:00.000",
3689 - "departureCountryName": "United Arab Emirates",
3690 - "departureCityName": "Dubai",
3691 - "departureAirportCode": "DXB",
3692 - "departureAirportName": "Dubai Intl Airport",
3693 - "departureTerminalCode": "DXB3",
3694 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
3695 - "arrivalCountryName": "Kazakhstan",
3696 - "arrivalCityName": "Almaty",
3697 - "arrivalAirportCode": "ALA",
3698 - "arrivalAirportName": "Almaty Intl Airport",
3699 - "arrivalTerminalCode": "ALA",
3700 - "flightDuration": "3h 10m"
3701 - }
3702 - ],
3703 - "passengers": [
3704 - {
3705 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
3706 - "isAdult": true,
3707 - "selectedForwardBaggageCode": "INCLUDED",
3708 - "selectedBackwardBaggageCode": "INCLUDED",
3709 - "forwardBaggages": [
3710 - {
3711 - "baggageCode": "INCLUDED",
3712 - "description": "20 Kg Included",
3713 - "price": 0.0,
3714 - "currency": "USD",
3715 - "included": true
3716 - }
3717 - ],
3718 - "backwardBaggages": [
3719 - {
3720 - "baggageCode": "INCLUDED",
3721 - "description": "20 Kg Included",
3722 - "price": 0.0,
3723 - "currency": "USD",
3724 - "included": true
3725 - }
3726 - ]
3727 - },
3728 - {
3729 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
3730 - "isAdult": true,
3731 - "selectedForwardBaggageCode": "INCLUDED",
3732 - "selectedBackwardBaggageCode": "INCLUDED",
3733 - "forwardBaggages": [
3734 - {
3735 - "baggageCode": "INCLUDED",
3736 - "description": "20 Kg Included",
3737 - "price": 0.0,
3738 - "currency": "USD",
3739 - "included": true
3740 - }
3741 - ],
3742 - "backwardBaggages": [
3743 - {
3744 - "baggageCode": "INCLUDED",
3745 - "description": "20 Kg Included",
3746 - "price": 0.0,
3747 - "currency": "USD",
3748 - "included": true
3749 - }
3750 - ]
3751 - }
3752 - ]
3753 - },
3754 - "extraServices": [],
3755 - "insurancePrice": {
3756 - "name": "Medical INS (N10000)",
3757 - "price": 35.84,
3758 - "actualStartDate": "2024-05-25T00:00:00.000",
3759 - "actualEndDate": "2024-06-01T00:00:00.000",
3760 - "optional": false,
3761 - "includedInPackagePrice": true
3762 - },
3763 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:19",
3764 - "sortCheckInOut": "25.05.2024-01.06.2024",
3765 - "sortAirline": "fly dubai",
3766 - "sortHotelName": "arabian park edge by rotana",
3767 - "sortDetails": "ro",
3768 - "sortPlacement": "city view room twin beds 2 adults"
3769 - },
3770 - {
3771 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:b37b3b08-ba61-47d6-958a-6d4236cd4f57:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
3772 - "priceCurrency": "USD",
3773 - "totalPrice": 960.97,
3774 - "agentCommissionPercent": 0.0,
3775 - "agentCommissionAmount": 0.0,
3776 - "includedExtrasAmount": 0,
3777 - "priceDifference": 0,
3778 - "hotel": {
3779 - "hotelPriceId": "b37b3b08-ba61-47d6-958a-6d4236cd4f57",
3780 - "hotelName": "Arabian Park Edge by Rotana",
3781 - "hotelCode": "HYQDXBAPNUG",
3782 - "nigths": 7,
3783 - "mealPlan": "RO",
3784 - "hotelClass": "3",
3785 - "hotelColor": "#228B22",
3786 - "availabilityType": "FreeSale",
3787 - "availableRoomsCount": 0,
3788 - "fewRooms": true,
3789 - "roomCategoryCode": "D1K",
3790 - "roomCategoryName": "City View Room - King Bed",
3791 - "placementTypeName": "2 Adults",
3792 - "placementDescription": "O18-Saver O18SAVER-RO",
3793 - "checkInDate": "2024-05-25T00:00:00.000",
3794 - "checkOutDate": "2024-06-01T00:00:00.000",
3795 - "adults": 2,
3796 - "children": 0,
3797 - "districtUID": "b152b6e9-e172-4ff5-b2df-3703b783cdf9",
3798 - "districtName": "Al Jaddaf",
3799 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
3800 - "cityName": "Dubai",
3801 - "countryCode": "AE",
3802 - "countryName": "United Arab Emirates",
3803 - "hasAlcohol": true,
3804 - "hasFreeWifi": true,
3805 - "hasMetro": true,
3806 - "hasPool": true,
3807 - "hasMall": false,
3808 - "infantMaxAge": 1.99,
3809 - "childMinAge": 2.0,
3810 - "childMaxAge": 11.99,
3811 - "teenMinAge": 0.0,
3812 - "teenMaxAge": 0.0,
3813 - "adultMinAge": 12.0,
3814 - "cancellationPolicyDescription": "Cancellation Policy: Free cancellation, Early Departure: 100.00 %, NoShow: 100.00 %",
3815 - "cancellationPolicy": {
3816 - "noShowChargeValue": 100,
3817 - "noShowChargeValueType": "%",
3818 - "earlyDepartureChargeValue": 100,
3819 - "earlyDepartureChargeValueType": "%",
3820 - "conditions": [
3821 - {
3822 - "timeunits": 0,
3823 - "timeunitType": "Day",
3824 - "timeOffsetTypeName": "Before Arrival",
3825 - "chargeValue": 0,
3826 - "chargeValueType": "%"
3827 - }
3828 - ]
3829 - }
3830 - },
3831 - "flight": {
3832 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
3833 - "departureDate": "2024-05-25T00:00:00.000",
3834 - "returnDate": "2024-06-01T00:00:00.000",
3835 - "departureTicketsLeft": 48,
3836 - "returnTicketsLeft": 33,
3837 - "departureAvailabilityType": "FreeSale",
3838 - "returnAvailabilityType": "FreeSale",
3839 - "isTwoWay": true,
3840 - "sameBaggageForAll": false,
3841 - "totalBaggage": false,
3842 - "isBlock": true,
3843 - "class": "Economy",
3844 - "departureSegments": [
3845 - {
3846 - "airlineCode": "FZ",
3847 - "airlineName": "Fly Dubai",
3848 - "flightCode": "FZ1722",
3849 - "class": "Economy",
3850 - "lugageWeight": 20,
3851 - "handLugageWeight": 6,
3852 - "departureFlightDate": "2024-05-25T03:35:00.000",
3853 - "departureCountryName": "Kazakhstan",
3854 - "departureCityName": "Almaty",
3855 - "departureAirportCode": "ALA",
3856 - "departureAirportName": "Almaty Intl Airport",
3857 - "departureTerminalCode": "ALA",
3858 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
3859 - "arrivalCountryName": "United Arab Emirates",
3860 - "arrivalCityName": "Dubai",
3861 - "arrivalAirportCode": "DXB",
3862 - "arrivalAirportName": "Dubai Intl Airport",
3863 - "arrivalTerminalCode": "DXB3",
3864 - "flightDuration": "5h 35m"
3865 - }
3866 - ],
3867 - "returnSegments": [
3868 - {
3869 - "airlineCode": "FZ",
3870 - "airlineName": "Fly Dubai",
3871 - "flightCode": "FZ1721",
3872 - "class": "Economy",
3873 - "lugageWeight": 20,
3874 - "handLugageWeight": 6,
3875 - "departureFlightDate": "2024-06-01T21:25:00.000",
3876 - "departureCountryName": "United Arab Emirates",
3877 - "departureCityName": "Dubai",
3878 - "departureAirportCode": "DXB",
3879 - "departureAirportName": "Dubai Intl Airport",
3880 - "departureTerminalCode": "DXB3",
3881 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
3882 - "arrivalCountryName": "Kazakhstan",
3883 - "arrivalCityName": "Almaty",
3884 - "arrivalAirportCode": "ALA",
3885 - "arrivalAirportName": "Almaty Intl Airport",
3886 - "arrivalTerminalCode": "ALA",
3887 - "flightDuration": "3h 10m"
3888 - }
3889 - ],
3890 - "passengers": [
3891 - {
3892 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
3893 - "isAdult": true,
3894 - "selectedForwardBaggageCode": "INCLUDED",
3895 - "selectedBackwardBaggageCode": "INCLUDED",
3896 - "forwardBaggages": [
3897 - {
3898 - "baggageCode": "INCLUDED",
3899 - "description": "20 Kg Included",
3900 - "price": 0.0,
3901 - "currency": "USD",
3902 - "included": true
3903 - }
3904 - ],
3905 - "backwardBaggages": [
3906 - {
3907 - "baggageCode": "INCLUDED",
3908 - "description": "20 Kg Included",
3909 - "price": 0.0,
3910 - "currency": "USD",
3911 - "included": true
3912 - }
3913 - ]
3914 - },
3915 - {
3916 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
3917 - "isAdult": true,
3918 - "selectedForwardBaggageCode": "INCLUDED",
3919 - "selectedBackwardBaggageCode": "INCLUDED",
3920 - "forwardBaggages": [
3921 - {
3922 - "baggageCode": "INCLUDED",
3923 - "description": "20 Kg Included",
3924 - "price": 0.0,
3925 - "currency": "USD",
3926 - "included": true
3927 - }
3928 - ],
3929 - "backwardBaggages": [
3930 - {
3931 - "baggageCode": "INCLUDED",
3932 - "description": "20 Kg Included",
3933 - "price": 0.0,
3934 - "currency": "USD",
3935 - "included": true
3936 - }
3937 - ]
3938 - }
3939 - ]
3940 - },
3941 - "extraServices": [],
3942 - "insurancePrice": {
3943 - "name": "Medical INS (N10000)",
3944 - "price": 35.84,
3945 - "actualStartDate": "2024-05-25T00:00:00.000",
3946 - "actualEndDate": "2024-06-01T00:00:00.000",
3947 - "optional": false,
3948 - "includedInPackagePrice": true
3949 - },
3950 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:20",
3951 - "sortCheckInOut": "25.05.2024-01.06.2024",
3952 - "sortAirline": "fly dubai",
3953 - "sortHotelName": "arabian park edge by rotana",
3954 - "sortDetails": "ro",
3955 - "sortPlacement": "city view room king bed 2 adults"
3956 - },
3957 - {
3958 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:694ac032-e54d-4126-aa0e-bb0777dfc362:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
3959 - "priceCurrency": "USD",
3960 - "totalPrice": 962.33,
3961 - "agentCommissionPercent": 0.0,
3962 - "agentCommissionAmount": 0.0,
3963 - "includedExtrasAmount": 0,
3964 - "priceDifference": 0,
3965 - "hotel": {
3966 - "hotelPriceId": "694ac032-e54d-4126-aa0e-bb0777dfc362",
3967 - "hotelName": "Wyndham Dubai Deira",
3968 - "hotelCode": "454b6b6c-2ae3-4d0c-9d08-626ca58b7457",
3969 - "nigths": 7,
3970 - "mealPlan": "RO",
3971 - "hotelClass": "4",
3972 - "hotelColor": "#000000",
3973 - "availabilityType": "FreeSale",
3974 - "availableRoomsCount": 0,
3975 - "fewRooms": true,
3976 - "roomCategoryCode": "6ae991ac-6cc6-49ba-9e2f-fa28837b56b4",
3977 - "roomCategoryName": "Superior Room City View",
3978 - "placementTypeName": "DBL",
3979 - "checkInDate": "2024-05-25T00:00:00.000",
3980 - "checkOutDate": "2024-06-01T00:00:00.000",
3981 - "adults": 2,
3982 - "children": 0,
3983 - "districtUID": "aaff2238-fa72-4900-83f8-a16990415547",
3984 - "districtName": "Deira",
3985 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
3986 - "cityName": "Dubai",
3987 - "countryCode": "AE",
3988 - "countryName": "United Arab Emirates",
3989 - "hasAlcohol": false,
3990 - "hasFreeWifi": true,
3991 - "hasMetro": false,
3992 - "hasPool": true,
3993 - "hasMall": false,
3994 - "infantMaxAge": 5.99,
3995 - "childMinAge": 6.0,
3996 - "childMaxAge": 11.99,
3997 - "teenMinAge": 0.0,
3998 - "teenMaxAge": 0.0,
3999 - "adultMinAge": 12.0,
4000 - "cancellationPolicyDescription": "Cancellation Policy: 1 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %",
4001 - "cancellationPolicy": {
4002 - "noShowChargeValue": 100.0,
4003 - "noShowChargeValueType": "%",
4004 - "earlyDepartureChargeValue": 100.0,
4005 - "earlyDepartureChargeValueType": "%",
4006 - "conditions": [
4007 - {
4008 - "timeunits": 1,
4009 - "timeunitType": "Day",
4010 - "timeOffsetTypeName": "Before Arrival",
4011 - "chargeValue": 1.0,
4012 - "chargeValueType": "Night"
4013 - }
4014 - ]
4015 - }
4016 - },
4017 - "flight": {
4018 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
4019 - "departureDate": "2024-05-25T00:00:00.000",
4020 - "returnDate": "2024-06-01T00:00:00.000",
4021 - "departureTicketsLeft": 48,
4022 - "returnTicketsLeft": 33,
4023 - "departureAvailabilityType": "FreeSale",
4024 - "returnAvailabilityType": "FreeSale",
4025 - "isTwoWay": true,
4026 - "sameBaggageForAll": false,
4027 - "totalBaggage": false,
4028 - "isBlock": true,
4029 - "class": "Economy",
4030 - "departureSegments": [
4031 - {
4032 - "airlineCode": "FZ",
4033 - "airlineName": "Fly Dubai",
4034 - "flightCode": "FZ1722",
4035 - "class": "Economy",
4036 - "lugageWeight": 20,
4037 - "handLugageWeight": 6,
4038 - "departureFlightDate": "2024-05-25T03:35:00.000",
4039 - "departureCountryName": "Kazakhstan",
4040 - "departureCityName": "Almaty",
4041 - "departureAirportCode": "ALA",
4042 - "departureAirportName": "Almaty Intl Airport",
4043 - "departureTerminalCode": "ALA",
4044 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
4045 - "arrivalCountryName": "United Arab Emirates",
4046 - "arrivalCityName": "Dubai",
4047 - "arrivalAirportCode": "DXB",
4048 - "arrivalAirportName": "Dubai Intl Airport",
4049 - "arrivalTerminalCode": "DXB3",
4050 - "flightDuration": "5h 35m"
4051 - }
4052 - ],
4053 - "returnSegments": [
4054 - {
4055 - "airlineCode": "FZ",
4056 - "airlineName": "Fly Dubai",
4057 - "flightCode": "FZ1721",
4058 - "class": "Economy",
4059 - "lugageWeight": 20,
4060 - "handLugageWeight": 6,
4061 - "departureFlightDate": "2024-06-01T21:25:00.000",
4062 - "departureCountryName": "United Arab Emirates",
4063 - "departureCityName": "Dubai",
4064 - "departureAirportCode": "DXB",
4065 - "departureAirportName": "Dubai Intl Airport",
4066 - "departureTerminalCode": "DXB3",
4067 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
4068 - "arrivalCountryName": "Kazakhstan",
4069 - "arrivalCityName": "Almaty",
4070 - "arrivalAirportCode": "ALA",
4071 - "arrivalAirportName": "Almaty Intl Airport",
4072 - "arrivalTerminalCode": "ALA",
4073 - "flightDuration": "3h 10m"
4074 - }
4075 - ],
4076 - "passengers": [
4077 - {
4078 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
4079 - "isAdult": true,
4080 - "selectedForwardBaggageCode": "INCLUDED",
4081 - "selectedBackwardBaggageCode": "INCLUDED",
4082 - "forwardBaggages": [
4083 - {
4084 - "baggageCode": "INCLUDED",
4085 - "description": "20 Kg Included",
4086 - "price": 0.0,
4087 - "currency": "USD",
4088 - "included": true
4089 - }
4090 - ],
4091 - "backwardBaggages": [
4092 - {
4093 - "baggageCode": "INCLUDED",
4094 - "description": "20 Kg Included",
4095 - "price": 0.0,
4096 - "currency": "USD",
4097 - "included": true
4098 - }
4099 - ]
4100 - },
4101 - {
4102 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
4103 - "isAdult": true,
4104 - "selectedForwardBaggageCode": "INCLUDED",
4105 - "selectedBackwardBaggageCode": "INCLUDED",
4106 - "forwardBaggages": [
4107 - {
4108 - "baggageCode": "INCLUDED",
4109 - "description": "20 Kg Included",
4110 - "price": 0.0,
4111 - "currency": "USD",
4112 - "included": true
4113 - }
4114 - ],
4115 - "backwardBaggages": [
4116 - {
4117 - "baggageCode": "INCLUDED",
4118 - "description": "20 Kg Included",
4119 - "price": 0.0,
4120 - "currency": "USD",
4121 - "included": true
4122 - }
4123 - ]
4124 - }
4125 - ]
4126 - },
4127 - "extraServices": [],
4128 - "insurancePrice": {
4129 - "name": "Medical INS (N10000)",
4130 - "price": 35.84,
4131 - "actualStartDate": "2024-05-25T00:00:00.000",
4132 - "actualEndDate": "2024-06-01T00:00:00.000",
4133 - "optional": false,
4134 - "includedInPackagePrice": true
4135 - },
4136 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:21",
4137 - "sortCheckInOut": "25.05.2024-01.06.2024",
4138 - "sortAirline": "fly dubai",
4139 - "sortHotelName": "wyndham dubai deira",
4140 - "sortDetails": "ro",
4141 - "sortPlacement": "superior room city view dbl"
4142 - },
4143 - {
4144 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:f4a0acaf-fac1-4bf3-8ea4-88d221889c98:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
4145 - "priceCurrency": "USD",
4146 - "totalPrice": 964.58,
4147 - "agentCommissionPercent": 0.0,
4148 - "agentCommissionAmount": 0.0,
4149 - "includedExtrasAmount": 0,
4150 - "priceDifference": 0,
4151 - "hotel": {
4152 - "hotelPriceId": "f4a0acaf-fac1-4bf3-8ea4-88d221889c98",
4153 - "hotelName": "Nejoum Al Emarate Hotel",
4154 - "hotelCode": "2ec33ad4-e25d-4e14-aee8-4a899d592839",
4155 - "nigths": 7,
4156 - "mealPlan": "RO",
4157 - "hotelClass": "3",
4158 - "hotelColor": "#000000",
4159 - "availabilityType": "StopSale",
4160 - "availableRoomsCount": 0,
4161 - "fewRooms": true,
4162 - "roomCategoryCode": "1b5180d0-6afb-4465-9821-56ba6dd77220",
4163 - "roomCategoryName": "Standard Room",
4164 - "placementTypeName": "DBL",
4165 - "checkInDate": "2024-05-25T00:00:00.000",
4166 - "checkOutDate": "2024-06-01T00:00:00.000",
4167 - "adults": 2,
4168 - "children": 0,
4169 - "districtUID": "7ac1bbc8-59ea-4977-b272-ed8553f94f9b",
4170 - "districtName": "Sharjah",
4171 - "cityUID": "f78ac3bc-f040-46d0-8319-2c52083080a6",
4172 - "cityName": "Sharjah",
4173 - "countryCode": "AE",
4174 - "countryName": "United Arab Emirates",
4175 - "hasAlcohol": false,
4176 - "hasFreeWifi": true,
4177 - "hasMetro": false,
4178 - "hasPool": false,
4179 - "hasMall": false,
4180 - "infantMaxAge": 5.99,
4181 - "childMinAge": 6.0,
4182 - "childMaxAge": 10.99,
4183 - "teenMinAge": 0.0,
4184 - "teenMaxAge": 0.0,
4185 - "adultMinAge": 11.0,
4186 - "cancellationPolicyDescription": "Cancellation Policy: 1 Day Before Arrival: 1.00 Night, Early Departure: 100.00 %, NoShow: 100.00 %",
4187 - "cancellationPolicy": {
4188 - "noShowChargeValue": 100.0,
4189 - "noShowChargeValueType": "%",
4190 - "earlyDepartureChargeValue": 100.0,
4191 - "earlyDepartureChargeValueType": "%",
4192 - "conditions": [
4193 - {
4194 - "timeunits": 1,
4195 - "timeunitType": "Day",
4196 - "timeOffsetTypeName": "Before Arrival",
4197 - "chargeValue": 1.0,
4198 - "chargeValueType": "Night"
4199 - }
4200 - ]
4201 - }
4202 - },
4203 - "flight": {
4204 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
4205 - "departureDate": "2024-05-25T00:00:00.000",
4206 - "returnDate": "2024-06-01T00:00:00.000",
4207 - "departureTicketsLeft": 48,
4208 - "returnTicketsLeft": 33,
4209 - "departureAvailabilityType": "FreeSale",
4210 - "returnAvailabilityType": "FreeSale",
4211 - "isTwoWay": true,
4212 - "sameBaggageForAll": false,
4213 - "totalBaggage": false,
4214 - "isBlock": true,
4215 - "class": "Economy",
4216 - "departureSegments": [
4217 - {
4218 - "airlineCode": "FZ",
4219 - "airlineName": "Fly Dubai",
4220 - "flightCode": "FZ1722",
4221 - "class": "Economy",
4222 - "lugageWeight": 20,
4223 - "handLugageWeight": 6,
4224 - "departureFlightDate": "2024-05-25T03:35:00.000",
4225 - "departureCountryName": "Kazakhstan",
4226 - "departureCityName": "Almaty",
4227 - "departureAirportCode": "ALA",
4228 - "departureAirportName": "Almaty Intl Airport",
4229 - "departureTerminalCode": "ALA",
4230 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
4231 - "arrivalCountryName": "United Arab Emirates",
4232 - "arrivalCityName": "Dubai",
4233 - "arrivalAirportCode": "DXB",
4234 - "arrivalAirportName": "Dubai Intl Airport",
4235 - "arrivalTerminalCode": "DXB3",
4236 - "flightDuration": "5h 35m"
4237 - }
4238 - ],
4239 - "returnSegments": [
4240 - {
4241 - "airlineCode": "FZ",
4242 - "airlineName": "Fly Dubai",
4243 - "flightCode": "FZ1721",
4244 - "class": "Economy",
4245 - "lugageWeight": 20,
4246 - "handLugageWeight": 6,
4247 - "departureFlightDate": "2024-06-01T21:25:00.000",
4248 - "departureCountryName": "United Arab Emirates",
4249 - "departureCityName": "Dubai",
4250 - "departureAirportCode": "DXB",
4251 - "departureAirportName": "Dubai Intl Airport",
4252 - "departureTerminalCode": "DXB3",
4253 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
4254 - "arrivalCountryName": "Kazakhstan",
4255 - "arrivalCityName": "Almaty",
4256 - "arrivalAirportCode": "ALA",
4257 - "arrivalAirportName": "Almaty Intl Airport",
4258 - "arrivalTerminalCode": "ALA",
4259 - "flightDuration": "3h 10m"
4260 - }
4261 - ],
4262 - "passengers": [
4263 - {
4264 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
4265 - "isAdult": true,
4266 - "selectedForwardBaggageCode": "INCLUDED",
4267 - "selectedBackwardBaggageCode": "INCLUDED",
4268 - "forwardBaggages": [
4269 - {
4270 - "baggageCode": "INCLUDED",
4271 - "description": "20 Kg Included",
4272 - "price": 0.0,
4273 - "currency": "USD",
4274 - "included": true
4275 - }
4276 - ],
4277 - "backwardBaggages": [
4278 - {
4279 - "baggageCode": "INCLUDED",
4280 - "description": "20 Kg Included",
4281 - "price": 0.0,
4282 - "currency": "USD",
4283 - "included": true
4284 - }
4285 - ]
4286 - },
4287 - {
4288 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
4289 - "isAdult": true,
4290 - "selectedForwardBaggageCode": "INCLUDED",
4291 - "selectedBackwardBaggageCode": "INCLUDED",
4292 - "forwardBaggages": [
4293 - {
4294 - "baggageCode": "INCLUDED",
4295 - "description": "20 Kg Included",
4296 - "price": 0.0,
4297 - "currency": "USD",
4298 - "included": true
4299 - }
4300 - ],
4301 - "backwardBaggages": [
4302 - {
4303 - "baggageCode": "INCLUDED",
4304 - "description": "20 Kg Included",
4305 - "price": 0.0,
4306 - "currency": "USD",
4307 - "included": true
4308 - }
4309 - ]
4310 - }
4311 - ]
4312 - },
4313 - "extraServices": [],
4314 - "insurancePrice": {
4315 - "name": "Medical INS (N10000)",
4316 - "price": 35.84,
4317 - "actualStartDate": "2024-05-25T00:00:00.000",
4318 - "actualEndDate": "2024-06-01T00:00:00.000",
4319 - "optional": false,
4320 - "includedInPackagePrice": true
4321 - },
4322 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:22",
4323 - "sortCheckInOut": "25.05.2024-01.06.2024",
4324 - "sortAirline": "fly dubai",
4325 - "sortHotelName": "nejoum al emarate hotel",
4326 - "sortDetails": "ro",
4327 - "sortPlacement": "standard room dbl"
4328 - },
4329 - {
4330 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:3eb56b26-4f40-4584-bb3c-14a4612392a0:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
4331 - "priceCurrency": "USD",
4332 - "totalPrice": 964.99,
4333 - "agentCommissionPercent": 0.0,
4334 - "agentCommissionAmount": 0.0,
4335 - "includedExtrasAmount": 0,
4336 - "priceDifference": 0,
4337 - "hotel": {
4338 - "hotelPriceId": "3eb56b26-4f40-4584-bb3c-14a4612392a0",
4339 - "hotelName": "Golden Tulip Deira",
4340 - "hotelCode": "43208253-abb9-4325-868b-af8b157c7d6f",
4341 - "nigths": 7,
4342 - "mealPlan": "RO",
4343 - "hotelClass": "4",
4344 - "hotelColor": "#000000",
4345 - "availabilityType": "FreeSale",
4346 - "availableRoomsCount": 0,
4347 - "fewRooms": true,
4348 - "roomCategoryCode": "e283d2af-b1db-44a4-b15f-44866e4dd5f0",
4349 - "roomCategoryName": "Superior Room",
4350 - "placementTypeName": "DBL",
4351 - "checkInDate": "2024-05-25T00:00:00.000",
4352 - "checkOutDate": "2024-06-01T00:00:00.000",
4353 - "adults": 2,
4354 - "children": 0,
4355 - "districtUID": "aaff2238-fa72-4900-83f8-a16990415547",
4356 - "districtName": "Deira",
4357 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
4358 - "cityName": "Dubai",
4359 - "countryCode": "AE",
4360 - "countryName": "United Arab Emirates",
4361 - "hasAlcohol": true,
4362 - "hasFreeWifi": true,
4363 - "hasMetro": true,
4364 - "hasPool": true,
4365 - "hasMall": false,
4366 - "infantMaxAge": 4.99,
4367 - "childMinAge": 5.0,
4368 - "childMaxAge": 10.99,
4369 - "teenMinAge": 0.0,
4370 - "teenMaxAge": 0.0,
4371 - "adultMinAge": 11.0,
4372 - "cancellationPolicyDescription": "Cancellation Policy: Non refundable",
4373 - "cancellationPolicy": {
4374 - "noShowChargeValue": 100.0,
4375 - "noShowChargeValueType": "%",
4376 - "earlyDepartureChargeValue": 100.0,
4377 - "earlyDepartureChargeValueType": "%",
4378 - "conditions": [
4379 - {
4380 - "timeunits": 365,
4381 - "timeunitType": "Day",
4382 - "timeOffsetTypeName": "Before Arrival",
4383 - "chargeValue": 100.0,
4384 - "chargeValueType": "%"
4385 - }
4386 - ]
4387 - }
4388 - },
4389 - "flight": {
4390 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
4391 - "departureDate": "2024-05-25T00:00:00.000",
4392 - "returnDate": "2024-06-01T00:00:00.000",
4393 - "departureTicketsLeft": 48,
4394 - "returnTicketsLeft": 33,
4395 - "departureAvailabilityType": "FreeSale",
4396 - "returnAvailabilityType": "FreeSale",
4397 - "isTwoWay": true,
4398 - "sameBaggageForAll": false,
4399 - "totalBaggage": false,
4400 - "isBlock": true,
4401 - "class": "Economy",
4402 - "departureSegments": [
4403 - {
4404 - "airlineCode": "FZ",
4405 - "airlineName": "Fly Dubai",
4406 - "flightCode": "FZ1722",
4407 - "class": "Economy",
4408 - "lugageWeight": 20,
4409 - "handLugageWeight": 6,
4410 - "departureFlightDate": "2024-05-25T03:35:00.000",
4411 - "departureCountryName": "Kazakhstan",
4412 - "departureCityName": "Almaty",
4413 - "departureAirportCode": "ALA",
4414 - "departureAirportName": "Almaty Intl Airport",
4415 - "departureTerminalCode": "ALA",
4416 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
4417 - "arrivalCountryName": "United Arab Emirates",
4418 - "arrivalCityName": "Dubai",
4419 - "arrivalAirportCode": "DXB",
4420 - "arrivalAirportName": "Dubai Intl Airport",
4421 - "arrivalTerminalCode": "DXB3",
4422 - "flightDuration": "5h 35m"
4423 - }
4424 - ],
4425 - "returnSegments": [
4426 - {
4427 - "airlineCode": "FZ",
4428 - "airlineName": "Fly Dubai",
4429 - "flightCode": "FZ1721",
4430 - "class": "Economy",
4431 - "lugageWeight": 20,
4432 - "handLugageWeight": 6,
4433 - "departureFlightDate": "2024-06-01T21:25:00.000",
4434 - "departureCountryName": "United Arab Emirates",
4435 - "departureCityName": "Dubai",
4436 - "departureAirportCode": "DXB",
4437 - "departureAirportName": "Dubai Intl Airport",
4438 - "departureTerminalCode": "DXB3",
4439 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
4440 - "arrivalCountryName": "Kazakhstan",
4441 - "arrivalCityName": "Almaty",
4442 - "arrivalAirportCode": "ALA",
4443 - "arrivalAirportName": "Almaty Intl Airport",
4444 - "arrivalTerminalCode": "ALA",
4445 - "flightDuration": "3h 10m"
4446 - }
4447 - ],
4448 - "passengers": [
4449 - {
4450 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
4451 - "isAdult": true,
4452 - "selectedForwardBaggageCode": "INCLUDED",
4453 - "selectedBackwardBaggageCode": "INCLUDED",
4454 - "forwardBaggages": [
4455 - {
4456 - "baggageCode": "INCLUDED",
4457 - "description": "20 Kg Included",
4458 - "price": 0.0,
4459 - "currency": "USD",
4460 - "included": true
4461 - }
4462 - ],
4463 - "backwardBaggages": [
4464 - {
4465 - "baggageCode": "INCLUDED",
4466 - "description": "20 Kg Included",
4467 - "price": 0.0,
4468 - "currency": "USD",
4469 - "included": true
4470 - }
4471 - ]
4472 - },
4473 - {
4474 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
4475 - "isAdult": true,
4476 - "selectedForwardBaggageCode": "INCLUDED",
4477 - "selectedBackwardBaggageCode": "INCLUDED",
4478 - "forwardBaggages": [
4479 - {
4480 - "baggageCode": "INCLUDED",
4481 - "description": "20 Kg Included",
4482 - "price": 0.0,
4483 - "currency": "USD",
4484 - "included": true
4485 - }
4486 - ],
4487 - "backwardBaggages": [
4488 - {
4489 - "baggageCode": "INCLUDED",
4490 - "description": "20 Kg Included",
4491 - "price": 0.0,
4492 - "currency": "USD",
4493 - "included": true
4494 - }
4495 - ]
4496 - }
4497 - ]
4498 - },
4499 - "extraServices": [],
4500 - "insurancePrice": {
4501 - "name": "Medical INS (N10000)",
4502 - "price": 35.84,
4503 - "actualStartDate": "2024-05-25T00:00:00.000",
4504 - "actualEndDate": "2024-06-01T00:00:00.000",
4505 - "optional": false,
4506 - "includedInPackagePrice": true
4507 - },
4508 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:23",
4509 - "sortCheckInOut": "25.05.2024-01.06.2024",
4510 - "sortAirline": "fly dubai",
4511 - "sortHotelName": "golden tulip deira",
4512 - "sortDetails": "ro",
4513 - "sortPlacement": "superior room dbl"
4514 - },
4515 - {
4516 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:5549c887-6048-4d6e-93c7-d1a79f0075d3:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
4517 - "priceCurrency": "USD",
4518 - "totalPrice": 970.1,
4519 - "agentCommissionPercent": 0.0,
4520 - "agentCommissionAmount": 0.0,
4521 - "includedExtrasAmount": 0,
4522 - "priceDifference": 0,
4523 - "hotel": {
4524 - "hotelPriceId": "5549c887-6048-4d6e-93c7-d1a79f0075d3",
4525 - "hotelName": "Arabian Park Edge by Rotana",
4526 - "hotelCode": "3f0553d6-262b-402f-b164-6d1479282c3f",
4527 - "nigths": 7,
4528 - "mealPlan": "BB",
4529 - "hotelClass": "3",
4530 - "hotelColor": "#000000",
4531 - "availabilityType": "FreeSale",
4532 - "availableRoomsCount": 0,
4533 - "fewRooms": true,
4534 - "roomCategoryCode": "c158e04d-9e48-4fde-a7a5-1519e7c39fba",
4535 - "roomCategoryName": "City View Room King Bed",
4536 - "placementTypeName": "DBL",
4537 - "checkInDate": "2024-05-25T00:00:00.000",
4538 - "checkOutDate": "2024-06-01T00:00:00.000",
4539 - "adults": 2,
4540 - "children": 0,
4541 - "districtUID": "b152b6e9-e172-4ff5-b2df-3703b783cdf9",
4542 - "districtName": "Al Jaddaf",
4543 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
4544 - "cityName": "Dubai",
4545 - "countryCode": "AE",
4546 - "countryName": "United Arab Emirates",
4547 - "hasAlcohol": true,
4548 - "hasFreeWifi": true,
4549 - "hasMetro": true,
4550 - "hasPool": true,
4551 - "hasMall": false,
4552 - "infantMaxAge": 1.99,
4553 - "childMinAge": 2.0,
4554 - "childMaxAge": 11.99,
4555 - "teenMinAge": 0.0,
4556 - "teenMaxAge": 0.0,
4557 - "adultMinAge": 12.0,
4558 - "cancellationPolicyDescription": "Cancellation Policy: 4 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %",
4559 - "cancellationPolicy": {
4560 - "noShowChargeValue": 100.0,
4561 - "noShowChargeValueType": "%",
4562 - "earlyDepartureChargeValue": 100.0,
4563 - "earlyDepartureChargeValueType": "%",
4564 - "conditions": [
4565 - {
4566 - "timeunits": 4,
4567 - "timeunitType": "Day",
4568 - "timeOffsetTypeName": "Before Arrival",
4569 - "chargeValue": 100.0,
4570 - "chargeValueType": "%"
4571 - }
4572 - ]
4573 - }
4574 - },
4575 - "flight": {
4576 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
4577 - "departureDate": "2024-05-25T00:00:00.000",
4578 - "returnDate": "2024-06-01T00:00:00.000",
4579 - "departureTicketsLeft": 48,
4580 - "returnTicketsLeft": 33,
4581 - "departureAvailabilityType": "FreeSale",
4582 - "returnAvailabilityType": "FreeSale",
4583 - "isTwoWay": true,
4584 - "sameBaggageForAll": false,
4585 - "totalBaggage": false,
4586 - "isBlock": true,
4587 - "class": "Economy",
4588 - "departureSegments": [
4589 - {
4590 - "airlineCode": "FZ",
4591 - "airlineName": "Fly Dubai",
4592 - "flightCode": "FZ1722",
4593 - "class": "Economy",
4594 - "lugageWeight": 20,
4595 - "handLugageWeight": 6,
4596 - "departureFlightDate": "2024-05-25T03:35:00.000",
4597 - "departureCountryName": "Kazakhstan",
4598 - "departureCityName": "Almaty",
4599 - "departureAirportCode": "ALA",
4600 - "departureAirportName": "Almaty Intl Airport",
4601 - "departureTerminalCode": "ALA",
4602 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
4603 - "arrivalCountryName": "United Arab Emirates",
4604 - "arrivalCityName": "Dubai",
4605 - "arrivalAirportCode": "DXB",
4606 - "arrivalAirportName": "Dubai Intl Airport",
4607 - "arrivalTerminalCode": "DXB3",
4608 - "flightDuration": "5h 35m"
4609 - }
4610 - ],
4611 - "returnSegments": [
4612 - {
4613 - "airlineCode": "FZ",
4614 - "airlineName": "Fly Dubai",
4615 - "flightCode": "FZ1721",
4616 - "class": "Economy",
4617 - "lugageWeight": 20,
4618 - "handLugageWeight": 6,
4619 - "departureFlightDate": "2024-06-01T21:25:00.000",
4620 - "departureCountryName": "United Arab Emirates",
4621 - "departureCityName": "Dubai",
4622 - "departureAirportCode": "DXB",
4623 - "departureAirportName": "Dubai Intl Airport",
4624 - "departureTerminalCode": "DXB3",
4625 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
4626 - "arrivalCountryName": "Kazakhstan",
4627 - "arrivalCityName": "Almaty",
4628 - "arrivalAirportCode": "ALA",
4629 - "arrivalAirportName": "Almaty Intl Airport",
4630 - "arrivalTerminalCode": "ALA",
4631 - "flightDuration": "3h 10m"
4632 - }
4633 - ],
4634 - "passengers": [
4635 - {
4636 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
4637 - "isAdult": true,
4638 - "selectedForwardBaggageCode": "INCLUDED",
4639 - "selectedBackwardBaggageCode": "INCLUDED",
4640 - "forwardBaggages": [
4641 - {
4642 - "baggageCode": "INCLUDED",
4643 - "description": "20 Kg Included",
4644 - "price": 0.0,
4645 - "currency": "USD",
4646 - "included": true
4647 - }
4648 - ],
4649 - "backwardBaggages": [
4650 - {
4651 - "baggageCode": "INCLUDED",
4652 - "description": "20 Kg Included",
4653 - "price": 0.0,
4654 - "currency": "USD",
4655 - "included": true
4656 - }
4657 - ]
4658 - },
4659 - {
4660 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
4661 - "isAdult": true,
4662 - "selectedForwardBaggageCode": "INCLUDED",
4663 - "selectedBackwardBaggageCode": "INCLUDED",
4664 - "forwardBaggages": [
4665 - {
4666 - "baggageCode": "INCLUDED",
4667 - "description": "20 Kg Included",
4668 - "price": 0.0,
4669 - "currency": "USD",
4670 - "included": true
4671 - }
4672 - ],
4673 - "backwardBaggages": [
4674 - {
4675 - "baggageCode": "INCLUDED",
4676 - "description": "20 Kg Included",
4677 - "price": 0.0,
4678 - "currency": "USD",
4679 - "included": true
4680 - }
4681 - ]
4682 - }
4683 - ]
4684 - },
4685 - "extraServices": [],
4686 - "insurancePrice": {
4687 - "name": "Medical INS (N10000)",
4688 - "price": 35.84,
4689 - "actualStartDate": "2024-05-25T00:00:00.000",
4690 - "actualEndDate": "2024-06-01T00:00:00.000",
4691 - "optional": false,
4692 - "includedInPackagePrice": true
4693 - },
4694 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:24",
4695 - "sortCheckInOut": "25.05.2024-01.06.2024",
4696 - "sortAirline": "fly dubai",
4697 - "sortHotelName": "arabian park edge by rotana",
4698 - "sortDetails": "bb",
4699 - "sortPlacement": "city view room king bed dbl"
4700 - },
4701 - {
4702 - "id": "tour:5752cd54-45fa-481d-9b7e-3d8c4bf208a6:b12a8933-b108-42ba-9a4e-ac644789db77:ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
4703 - "priceCurrency": "USD",
4704 - "totalPrice": 970.1,
4705 - "agentCommissionPercent": 0.0,
4706 - "agentCommissionAmount": 0.0,
4707 - "includedExtrasAmount": 0,
4708 - "priceDifference": 0,
4709 - "hotel": {
4710 - "hotelPriceId": "b12a8933-b108-42ba-9a4e-ac644789db77",
4711 - "hotelName": "Howard Johnson by Wyndham Bur Dubai",
4712 - "hotelCode": "d565d01b-a347-40dc-bc0b-71d6c8d6526b",
4713 - "nigths": 7,
4714 - "mealPlan": "RO",
4715 - "hotelClass": "3",
4716 - "hotelColor": "#000000",
4717 - "availabilityType": "FreeSale",
4718 - "availableRoomsCount": 0,
4719 - "fewRooms": true,
4720 - "roomCategoryCode": "1ba57a59-ef0d-42ae-8e14-bc01c11d1038",
4721 - "roomCategoryName": "Standard Room",
4722 - "placementTypeName": "DBL",
4723 - "checkInDate": "2024-05-25T00:00:00.000",
4724 - "checkOutDate": "2024-06-01T00:00:00.000",
4725 - "adults": 2,
4726 - "children": 0,
4727 - "districtUID": "0353f8b7-4649-41f7-97bc-a92c5a288992",
4728 - "districtName": "Bur Dubai",
4729 - "cityUID": "f5185fa3-3f56-44ed-bf6b-80386a33caa2",
4730 - "cityName": "Dubai",
4731 - "countryCode": "AE",
4732 - "countryName": "United Arab Emirates",
4733 - "hasAlcohol": true,
4734 - "hasFreeWifi": true,
4735 - "hasMetro": false,
4736 - "hasPool": true,
4737 - "hasMall": false,
4738 - "infantMaxAge": 3.99,
4739 - "childMinAge": 4.0,
4740 - "childMaxAge": 10.99,
4741 - "teenMinAge": 0.0,
4742 - "teenMaxAge": 0.0,
4743 - "adultMinAge": 11.0,
4744 - "cancellationPolicyDescription": "Cancellation Policy: 2 Day Before Arrival: 100.00 %, Early Departure: 100.00 %, NoShow: 100.00 %",
4745 - "cancellationPolicy": {
4746 - "noShowChargeValue": 100.0,
4747 - "noShowChargeValueType": "%",
4748 - "earlyDepartureChargeValue": 100.0,
4749 - "earlyDepartureChargeValueType": "%",
4750 - "conditions": [
4751 - {
4752 - "timeunits": 2,
4753 - "timeunitType": "Day",
4754 - "timeOffsetTypeName": "Before Arrival",
4755 - "chargeValue": 100.0,
4756 - "chargeValueType": "%"
4757 - }
4758 - ]
4759 - }
4760 - },
4761 - "flight": {
4762 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203",
4763 - "departureDate": "2024-05-25T00:00:00.000",
4764 - "returnDate": "2024-06-01T00:00:00.000",
4765 - "departureTicketsLeft": 48,
4766 - "returnTicketsLeft": 33,
4767 - "departureAvailabilityType": "FreeSale",
4768 - "returnAvailabilityType": "FreeSale",
4769 - "isTwoWay": true,
4770 - "sameBaggageForAll": false,
4771 - "totalBaggage": false,
4772 - "isBlock": true,
4773 - "class": "Economy",
4774 - "departureSegments": [
4775 - {
4776 - "airlineCode": "FZ",
4777 - "airlineName": "Fly Dubai",
4778 - "flightCode": "FZ1722",
4779 - "class": "Economy",
4780 - "lugageWeight": 20,
4781 - "handLugageWeight": 6,
4782 - "departureFlightDate": "2024-05-25T03:35:00.000",
4783 - "departureCountryName": "Kazakhstan",
4784 - "departureCityName": "Almaty",
4785 - "departureAirportCode": "ALA",
4786 - "departureAirportName": "Almaty Intl Airport",
4787 - "departureTerminalCode": "ALA",
4788 - "arrivalFlightDate": "2024-05-25T07:10:00.000",
4789 - "arrivalCountryName": "United Arab Emirates",
4790 - "arrivalCityName": "Dubai",
4791 - "arrivalAirportCode": "DXB",
4792 - "arrivalAirportName": "Dubai Intl Airport",
4793 - "arrivalTerminalCode": "DXB3",
4794 - "flightDuration": "5h 35m"
4795 - }
4796 - ],
4797 - "returnSegments": [
4798 - {
4799 - "airlineCode": "FZ",
4800 - "airlineName": "Fly Dubai",
4801 - "flightCode": "FZ1721",
4802 - "class": "Economy",
4803 - "lugageWeight": 20,
4804 - "handLugageWeight": 6,
4805 - "departureFlightDate": "2024-06-01T21:25:00.000",
4806 - "departureCountryName": "United Arab Emirates",
4807 - "departureCityName": "Dubai",
4808 - "departureAirportCode": "DXB",
4809 - "departureAirportName": "Dubai Intl Airport",
4810 - "departureTerminalCode": "DXB3",
4811 - "arrivalFlightDate": "2024-06-02T02:35:00.000",
4812 - "arrivalCountryName": "Kazakhstan",
4813 - "arrivalCityName": "Almaty",
4814 - "arrivalAirportCode": "ALA",
4815 - "arrivalAirportName": "Almaty Intl Airport",
4816 - "arrivalTerminalCode": "ALA",
4817 - "flightDuration": "3h 10m"
4818 - }
4819 - ],
4820 - "passengers": [
4821 - {
4822 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A1",
4823 - "isAdult": true,
4824 - "selectedForwardBaggageCode": "INCLUDED",
4825 - "selectedBackwardBaggageCode": "INCLUDED",
4826 - "forwardBaggages": [
4827 - {
4828 - "baggageCode": "INCLUDED",
4829 - "description": "20 Kg Included",
4830 - "price": 0.0,
4831 - "currency": "USD",
4832 - "included": true
4833 - }
4834 - ],
4835 - "backwardBaggages": [
4836 - {
4837 - "baggageCode": "INCLUDED",
4838 - "description": "20 Kg Included",
4839 - "price": 0.0,
4840 - "currency": "USD",
4841 - "included": true
4842 - }
4843 - ]
4844 - },
4845 - {
4846 - "id": "ac72e6c8-2b76-4840-b8fc-49a3e2e73203-A2",
4847 - "isAdult": true,
4848 - "selectedForwardBaggageCode": "INCLUDED",
4849 - "selectedBackwardBaggageCode": "INCLUDED",
4850 - "forwardBaggages": [
4851 - {
4852 - "baggageCode": "INCLUDED",
4853 - "description": "20 Kg Included",
4854 - "price": 0.0,
4855 - "currency": "USD",
4856 - "included": true
4857 - }
4858 - ],
4859 - "backwardBaggages": [
4860 - {
4861 - "baggageCode": "INCLUDED",
4862 - "description": "20 Kg Included",
4863 - "price": 0.0,
4864 - "currency": "USD",
4865 - "included": true
4866 - }
4867 - ]
4868 - }
4869 - ]
4870 - },
4871 - "extraServices": [],
4872 - "insurancePrice": {
4873 - "name": "Medical INS (N10000)",
4874 - "price": 35.84,
4875 - "actualStartDate": "2024-05-25T00:00:00.000",
4876 - "actualEndDate": "2024-06-01T00:00:00.000",
4877 - "optional": false,
4878 - "includedInPackagePrice": true
4879 - },
4880 - "cacheKey": "bd7e9a28fb744528a2deb043f05e0502602ea56f943a4dc9805321db85d51137:{8}:i:25",
4881 - "sortCheckInOut": "25.05.2024-01.06.2024",
4882 - "sortAirline": "fly dubai",
4883 - "sortHotelName": "howard johnson by wyndham bur dubai",
4884 - "sortDetails": "ro",
4885 - "sortPlacement": "standard room dbl"
4886 4886   }
4887 4887   ],
4888 - "pagingId": "8",
471 + "pagingId": "9",
4889 4889   "pageNumber": 1,
4890 - "pageCount": 36,
473 + "pageCount": 883,
4891 4891   "totalCount": 883,
4892 4892   "error": false
4893 4893  }
... ... @@ -5177,113 +5177,107 @@
5177 5177  == Definitions ==
5178 5178  
5179 5179  
5180 -**Request Parameters **
763 +=== **Request Parameters ** ===
5181 5181  
5182 5182  (% class="table-bordered" %)
5183 -|=Field|=Type|=Description
5184 -|departureCountryCode|string|The ISO 3166-1 alpha-2 country code for the departure country. For example, "KZ" for Kazakhstan.
5185 -|departureCityUID|string|The unique identifier for the departure city.
5186 -|arrivalCountryCode|string|The ISO 3166-1 alpha-2 country code for the arrival country. For example, "AE" for United Arab Emirates.
5187 -|arrivalLocations|array|An array of objects, each representing an arrival location. Each object contains: type (string) - The type of the location. This can be "city". label (string) - The name of the location. value (string) - The unique identifier for the location. tag (string) - A tag for the location.
5188 -|checkInDate|string|The check-in date in ISO 8601 format.
5189 -|checkInDateTo|string|The latest possible check-in date in ISO 8601 format.
5190 -|stayDays|integer|The minimum number of days to stay.
5191 -|stayDaysTo|integer|The maximum number of days to stay.
5192 -|airlineCode|string|The code of the airline. This field can be empty.
5193 -|ticketType|string|The type of the ticket. This field can be empty.
5194 -|directFlightsOnly|boolean|Indicates whether to search for direct flights only.
5195 -|longConnectTime|boolean|Indicates whether to include flights with long connection times.
5196 -|adults|integer|The number of adults.
5197 -|children|integer|The number of children.
5198 -|childrenAges|array|An array of integers, each representing the age of a child.
5199 -|extendedSearch|boolean|Indicates whether to perform an extended search.
5200 -|totalPriceFrom|float|The minimum total price.
5201 -|totalPriceTo|float|The maximum total price.
5202 -|recommended|boolean|Indicates whether to include recommended packages.
5203 -|popular|boolean|Indicates whether to include popular packages.
5204 -|freeSale|boolean|Indicates whether to include free sale packages.
5205 -|groupByHotel|boolean|Indicates whether to group the results by hotel.
5206 -|hotelCodes|array|An array of strings, each representing a hotel code. This field can be empty.
5207 -|mealPlans|array|An array of meal plans. This field can be empty.
5208 -|hotelClasses|array|An array of hotel classes. This field can be empty.
5209 -|hotelTypes|array|An array of hotel types. This field can be empty.
5210 -|hotelServices|array|An array of hotel services. This field can be empty.
5211 -|pagingId|string|The paging ID for paginated results. This field can be empty.
5212 -|pageNumber|integer|The page number for paginated results.
5213 -|pageRowCount|integer|The number of rows per page for paginated results.
766 +|=Key|=Type|=Nullable|=Description
767 +|departureCountryCode|String|No|The ISO 3166-1 alpha-2 code of the departure country. For example, "KZ" for Kazakhstan.
768 +|departureCityUID|String (UUID)|No|The unique identifier of the departure city. This is a UUID, such as "f0ba6324-f337-405c-8cc7-23d62cf664e8".
769 +|arrivalCountryCode|String|No|The ISO 3166-1 alpha-2 code of the arrival country. For example, "AE" for United Arab Emirates.
770 +|adults|Integer|No|The number of adults for the trip. For example, 2 for two adults.
771 +|children|Integer|No|The number of children for the trip. For example, 0 for no children.
772 +|departureDate|String (date-time)|No|The departure date in ISO 8601 format. For example, "2024-05-25T00:00:00" for May 25, 2024.
773 +|returnDate|String (date-time)|No|The return date in ISO 8601 format. For example, "2024-06-01T00:00:00" for June 1, 2024.
774 +|departureAndReturnDaysCount|Integer|No|The total number of days for the departure and return trip. For example, 7 for a week-long trip.
775 +|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.
776 +|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.
777 +|checkInAndCheckOutDaysCount|Integer|No|The total number of days for the hotel stay. For example, 7 for a week-long stay.
778 +|directFlightsOnly|Boolean|No|Whether to search for direct flights only. For example, true to only search for direct flights.
779 +|pageRowCount|Integer|No|The number of results to return per page. For example, 1 to return 1 result per page.
780 +|searchCurrency|String|No|The currency in which the search results should be displayed. For example, "USD" for United States Dollar.
5214 5214  
5215 -(% class="wikigeneratedid" %)
5216 -**Response Parameters**
5217 5217  
783 +=== **Response Parameters** ===
784 +
5218 5218  (% class="table-bordered" %)
5219 -|=Field|=Type|=Description
5220 -|packages|array|An array of packages available. Each package contains:
5221 -|cacheKey|string|A unique identifier for the cache.
5222 -|id|string|A unique identifier for the package.
5223 -|priceCurrency|string|The currency in which the price is displayed.
5224 -|totalPrice|float|The total price of the package.
5225 -|agentCommissionPercent|float|The commission percentage for the agent.
5226 -|agentCommissionAmount|float|The commission amount for the agent.
5227 -|includedExtrasAmount|integer|The amount of extras included in the package.
5228 -|priceDifference|integer|The difference in price from the original price.
5229 -|hotel|object|An object containing details about the hotel.
5230 -|hotelPriceId|string|A unique identifier for the hotel price.
5231 -|providerId|integer|A unique identifier for the provider.
5232 -|hotelName|string|The name of the hotel.
5233 -|hotelCode|string|A unique code for the hotel.
5234 -|nigths|integer|The number of nights for the stay.
5235 -|mealPlan|string|The meal plan for the stay.
5236 -|hotelClass|string|The class or rating of the hotel.
5237 -|availabilityType|string|The availability type of the hotel.
5238 -|availableRoomsCount|integer|The number of available rooms in the hotel.
5239 -|fewRooms|boolean|Indicates whether there are few rooms left.
5240 -|roomCategoryCode|string|A unique code for the room category.
5241 -|roomCategoryName|string|The name of the room category.
5242 -|placementTypeName|string|The name of the placement type.
5243 -|checkInDate|string|The check-in date in ISO 8601 format.
5244 -|checkOutDate|string|The check-out date in ISO 8601 format.
5245 -|adults|integer|The number of adults for the stay.
5246 -|children|integer|The number of children for the stay.
5247 -|districtUID|string|A unique identifier for the district.
5248 -|districtName|string|The name of the district.
5249 -|cityUID|string|A unique identifier for the city.
5250 -|cityName|string|The name of the city.
5251 -|countryCode|string|The ISO 3166-1 alpha-2 country code.
5252 -|countryName|string|The name of the country.
5253 -|hasAlcohol|boolean|Indicates whether the hotel serves alcohol.
5254 -|hasFreeWifi|boolean|Indicates whether the hotel offers free Wi-Fi.
5255 -|hasMetro|boolean|Indicates whether the hotel is near a metro station.
5256 -|hasPool|boolean|Indicates whether the hotel has a pool.
5257 -|hasMall|boolean|Indicates whether the hotel is near a shopping mall.
5258 -|cancellationPolicyDescription|string|The description of the cancellation policy.
5259 -|cancellationPolicy|object|An object containing details about the cancellation policy.
5260 -|flight|object|An object containing details about the flight.
5261 -|id|string|A unique identifier for the flight.
5262 -|departureDate|string|The departure date in ISO 8601 format.
5263 -|returnDate|string|The return date in ISO 8601 format.
5264 -|departureTicketsLeft|integer|The number of departure tickets left.
5265 -|returnTicketsLeft|integer|The number of return tickets left.
5266 -|departureAvailabilityType|string|The availability type of the departure flight.
5267 -|returnAvailabilityType|string|The availability type of the return flight.
5268 -|isTwoWay|boolean|Indicates whether the flight is two-way.
5269 -|sameBaggageForAll|boolean|Indicates whether the same baggage is applicable for all passengers.
5270 -|totalBaggage|boolean|Indicates whether total baggage is included.
5271 -|departureSegments|array|An array of objects, each representing a departure segment.
5272 -|returnSegments|array|An array of objects, each representing a return segment.
5273 -|passengers|array|An array of objects, each representing a passenger.
5274 -|extraServices|array|An array of extra services included in the package.
5275 -|insurancePrice|object|An object containing details about the insurance price.
5276 -|pagingId|string|The paging ID for paginated results.
5277 -|pageNumber|integer|The page number for paginated results.
5278 -|pageCount|integer|The total number of pages.
5279 -|totalCount|integer|The total count of packages.
5280 -|error|boolean|Indicates whether there was an error.
786 +|=Key|=Type|=Description
787 +|packages|Array|An array of travel packages. Each package includes various details about the package.
788 +|packages[].id|String|A unique identifier for the package. This is used to uniquely identify each package.
789 +|packages[].priceCurrency|String|The currency in which the price is denoted. This could be USD, EUR, etc.
790 +|packages[].totalPrice|Number|The total price of the package. This includes all costs associated with the package.
791 +|packages[].agentCommissionPercent|Number|The commission percentage for the agent. This is the percentage of the total price that the agent receives as commission.
792 +|packages[].agentCommissionAmount|Number|The commission amount for the agent. This is the actual amount the agent receives as commission.
793 +|packages[].includedExtrasAmount|Number|The amount for the included extras. This is the cost of any extra services included in the package.
794 +|packages[].priceDifference|Number|The price difference. This could be a discount or a price increase.
795 +|packages[].hotel|Object|An object containing details about the hotel included in the package. This includes information like the hotel name, class, availability, etc.
796 +|packages[].hotel.hotelPriceId|String|The price ID of the hotel. This is used to uniquely identify the price for the hotel.
797 +|packages[].hotel.hotelName|String|The name of the hotel. This is the actual name of the hotel.
798 +|packages[].hotel.hotelCode|String|The code of the hotel. This is a unique code used to identify the hotel.
799 +|packages[].hotel.nights|Number|The number of nights for the stay. This is the duration of the stay at the hotel.
800 +|packages[].hotel.mealPlan|String|The meal plan for the stay. This could be breakfast included, all inclusive, etc.
801 +|packages[].hotel.hotelClass|String|The class of the hotel. This could be 3-star, 4-star, 5-star, etc.
802 +|packages[].hotel.hotelColor|String|The color associated with the hotel. This could be used for categorization or visualization purposes.
803 +|packages[].hotel.availabilityType|String|The availability type of the hotel. This could be available, sold out, etc.
804 +|packages[].hotel.availableRoomsCount|Number|The count of available rooms. This is the number of rooms that are currently available at the hotel.
805 +|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.
806 +|packages[].hotel.roomCategoryCode|String|The code of the room category. This is a unique code used to identify the room category.
807 +|packages[].hotel.roomCategoryName|String|The name of the room category. This is the actual name of the room category.
808 +|packages[].hotel.placementTypeName|String|The name of the placement type. This could be sea view, garden view, etc.
809 +|packages[].hotel.placementDescription|String|The description of the placement. This provides more details about the placement type.
810 +|packages[].hotel.checkInDate|String|The check-in date. This is the date when the stay at the hotel begins.
811 +|packages[].hotel.checkOutDate|String|The check-out date. This is the date when the stay at the hotel ends.
812 +|packages[].hotel.adults|Number|The number of adults. This is the number of adults that will be staying at the hotel.
813 +|packages[].hotel.children|Number|The number of children. This is the number of children that will be staying at the hotel.
814 +|packages[].hotel.districtUID|String|The UID of the district. This is a unique identifier for the district where the hotel is located.
815 +|packages[].hotel.districtName|String|The name of the district. This is the actual name of the district where the hotel is located.
816 +|packages[].hotel.cityUID|String|The UID of the city. This is a unique identifier for the city where the hotel is located.
817 +|packages[].hotel.cityName|String|The name of the city. This is the actual name of the city where the hotel is located.
818 +|packages[].hotel.countryCode|String|The code of the country. This is a unique code used to identify the country where the hotel is located.
819 +|packages[].hotel.countryName|String|The name of the country. This is the actual name of the country where the hotel is located.
820 +|packages[].hotel.hasAlcohol|Boolean|A boolean indicating if alcohol is available. If true, it means that alcohol is available at the hotel.
821 +|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.
822 +|packages[].hotel.hasMetro|Boolean|A boolean indicating if metro is available. If true, it means that there is a metro station near the hotel.
823 +|packages[].hotel.hasPool|Boolean|A boolean indicating if a pool is available. If true, it means that the hotel has a pool.
824 +|packages[].hotel.hasMall|Boolean|A boolean indicating if a mall is available. If true, it means that there is a mall near the hotel.
825 +|packages[].hotel.infantMaxAge|Number|The maximum age for an infant. This is the maximum age at which a person is considered an infant.
826 +|packages[].hotel.childMinAge|Number|The minimum age for a child. This is the minimum age at which a person is considered a child.
827 +|packages[].hotel.childMaxAge|Number|The maximum age for a child. This is the maximum age at which a person is considered a child.
828 +|packages[].hotel.teenMinAge|Number|The minimum age for a teen. This is the minimum age at which a person is considered a teen.
829 +|packages[].hotel.teenMaxAge|Number|The maximum age for a teen. This is the maximum age at which a person is considered a teen.
830 +|packages[].hotel.adultMinAge|Number|The minimum age for an adult. This is the minimum age at which a person is considered an adult.
831 +|packages[].hotel.cancellationPolicyDescription|String|The description of the cancellation policy. This provides more details about the cancellation policy of the hotel.
832 +|packages[].hotel.cancellationPolicy|Object|An object containing details about the cancellation policy. This includes information like the cancellation deadline, cancellation fee, etc.
833 +|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.
834 +|packages[].flight.id|String|The ID of the flight. This is used to uniquely identify the flight.
835 +|packages[].flight.departureDate|String|The departure date of the flight. This is the date when the flight departs.
836 +|packages[].flight.returnDate|String|The return date of the flight. This is the date when the flight returns.
837 +|packages[].flight.departureTicketsLeft|Number|The number of departure tickets left. This is the number of tickets that are still available for the departure flight.
838 +|packages[].flight.returnTicketsLeft|Number|The number of return tickets left. This is the number of tickets that are still available for the return flight.
839 +|packages[].flight.departureAvailabilityType|String|The availability type of the departure flight. This could be available, sold out, etc.
840 +|packages[].flight.returnAvailabilityType|String|The availability type of the return flight. This could be available, sold out, etc.
841 +|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.
842 +|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.
843 +|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.
844 +|packages[].flight.isBlock|Boolean|A boolean indicating if the flight is blocked. If true, it means that the flight is currently blocked and cannot be booked.
845 +|packages[].flight.class|String|The class of the flight. This could be economy, business, first class, etc.
846 +|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.
847 +|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.
848 +|packages[].flight.passengers|Array|An array containing details about the passengers. Each passenger includes information like the passenger type, baggage allowance, etc.
849 +|packages[].extraServices|Array|An array of any extra services included in the package. Each service includes information like the service name, service price, etc.
850 +|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.
851 +|packages[].cacheKey|String|The cache key. This is used to cache the package details for faster retrieval.
852 +|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.
853 +|packages[].sortAirline|String|The airline for sorting. This is used to sort the packages based on the airline.
854 +|packages[].sortHotelName|String|The hotel name for sorting. This is used to sort the packages based on the hotel name.
855 +|packages[].sortDetails|String|The details for sorting. This is used to sort the packages based on various details.
856 +|packages[].sortPlacement|String|The placement for sorting. This is used to sort the packages based on the placement.
857 +|pagingId|String|An identifier for the page. This is used to uniquely identify each page of results.
858 +|pageNumber|Number|The current page number. This is the number of the current page of results.
859 +|pageCount|Number|The total number of pages. This is the total number of pages of results.
860 +|totalCount|Number|The total count of packages. This is the total number of packages in all pages of results.
861 +|error|Boolean|A boolean indicating whether there was an error. If true, it means that there was an error in retrieving the packages.
5281 5281  
5282 -=== Paging and Caching ===
5283 5283  
5284 -During the first request, Paging id must be  empty like this  ( "pagingId": "",)  pagenumber is the number of the page, pagerowcount means number of the given result in one page. So in the first request we can search like this:
5285 -
5286 -
5287 5287  ==== first request ====
5288 5288  
5289 5289  {{code language="Json"}}
... ... @@ -5294,10 +5294,12 @@
5294 5294   }
5295 5295  {{/code}}
5296 5296  
874 +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.
5297 5297  
876 +
5298 5298  ==== Request with caching ====
5299 5299  
5300 -as we receive response, in the end we can see pagingId- number, chich we can use for caching, and then just switch pagenumbers. for cleaning cache, it's important to make new request without pagingID
879 +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": "",
5301 5301  
5302 5302  {{code language="Json"}}
5303 5303   {
... ... @@ -5350,18 +5350,18 @@
5350 5350  == Important ==
5351 5351  
5352 5352  {{error}}
5353 -It's Important to in every other request header, put Auth token
932 +=== Implementing Authorization in Subsequent Requests ===
5354 5354  
5355 -**Key **- Authorization
934 +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:
5356 5356  
5357 -**Value **- Bearer Token what is given in this response.
936 +* **Header Key:** Authorization
937 +* **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.
5358 5358  
939 +Additionally, to ensure your requests are properly formatted and recognized, include the following headers:
5359 5359  
5360 -**also note in headers that:**
941 +* **Content-Type:** Specify this header as application/json to indicate the format of the request body.
942 +* **Header Key:** X-nugios-timezone
943 +* **Header Value:** 240 - Adjust this value to match your local timezone offset in minutes.
5361 5361  
5362 -Content-Type - application/json
5363 -
5364 -**Key - **X-nugios-timezone
5365 -
5366 -**Value **- 240
945 +Incorporating these headers with their respective values is essential for the successful processing of your API requests.
5367 5367  {{/error}}