AirOrderReshop

The AirOrderReshop endpoint allows you to make changes to an existing booking Information by providing the OrderID and GDS Booking Reference, with this, you can re-shop the booking, which means you can modify the itinerary based on the convenient.

Additionally, you need to provide the existing Booking details, like itinerary details, travel date, and passenger’s details which may include Passenger’s name, PassengerID and DocumentNumber.

Note: GDS-Global Distribution System.

Schema

  • Name: Provide the name for the request. This is a String value.

  • ReferenceVersion: Provide the version number. This is a Numeric value.


This is an optional field.

  • Travel Agency Sender

    • Name: Provide the name for the request. This is a String value.

    • IATA Number: Provide the IATA number for the request. This is a String value.

    • Agency ID: Provide the agency ID for the request. This is a String value.

    • Contacts: This is an Array.

      • EmailContact: Provide the email contact for the request. This is a String value.

  • OrderID: This is the unique identifier that is typically provided by the airline at the time of booking. This is the required field, and the value will be String.

  • GdsBookingReference: This is the code that is used by GDS to identify the booking. The GDS booking references are typically provided by the airlines at the time of booking. This is the required field, and the value will be the String.

  • Reshop:

    • OriginDestination: This is an Array. This is a required field. Provide the origin and destination details.

      • PreviousDeparture: Provide the previous departure details.

        • AirportCode: Provide the IATA Airport code for the request. Only three-letters codes are accepted. This is a String value.

        • Date: Departure date (YYYY-MM-DD) to be filled in for the request. Only (YYYY-MM-DD) format is accepted. This is a Numeric value.

      • PreviousArrival: Provide the previous arrival details.

        • AirportCode: Provide the IATA airport code for the request. Only three-letters codes are accepted. This is a String value.
      • PreviousCabinType: Provide the previous cabin type details. The default value is Y:ECONOMY. Valid values are Y: ECONOMY, S: PREM ECONOMY, C: BUSINESS, D: PREMBUSINESS, F: FIRSTCLASS, and P: PREMFIRSTCLASS. This is a String value.

      • Departure: Provide the new departure details.

        • AirportCode: Provide the IATA airport code for the request. Only three-letters codes are accepted. This is a String value.

        • Date: Departure date(YYYY-MM-DD) to be filled in for the request. Only (YYYY-MM-DD) format is accepted. This is a Numeric value.

      • Arrival: Provide the new arrival details.

        • AirportCode: Provide the IATA airport code for the request. Only three-letters codes are accepted. This is a String value.
      • CabinType: Provide the new cabin type details. The default value is Y:ECONOMY. Valid values are Y: ECONOMY, S: PREM ECONOMY, C: BUSINESS, D: PREMBUSINESS, F: FIRSTCLASS, and P: PREMFIRSTCLASS.


  • Passenger: This is an Array.

    Note: This is a required field. The Passenger list must have at least one adult. Infant object count should be less than or equal to the adult count. More than nine passengers are not accepted.

    • PassengerID: Provide the passenger ID for the request. This is a String value.

    • PTC: Provide the passenger type. Valid values are ADT, CHD, and INF. This is a String value.

    • NameTitle: Provide the title of the name. Valid values are Mrs, Miss, Ms, and Mstr. This is a String value.

    • FirstName: Provide the first name. This is a String value.

    • MiddleName: Provide the middle name. This is a String value.

    • LastName: Provide the last name. This is a String value.

    • DocumentNumber: This is the unique passenger’s identification number received at the time of ticketing response. It is a required field, and the value will be the String.


  • CabinType: Provide the new cabin type details. The default value is Y:ECONOMY. Valid values are Y: ECONOMY, S: PREM ECONOMY, C: BUSINESS, D: PREMBUSINESS, F: FIRSTCLASS, and P: PREMFIRSTCLASS. This is a String value.

TraceId: Provide the trace ID. This is a String value.

Request URL Sample

curl --location --request POST 'https://newapi.tltid.com/AirOrderReshop' \
--header 'Authorization: <YOUR_ACCESS_TOKEN>' \

Request Body Sample

{
    "OrderReshopRQ": {
        "Document": {
            "Name": "Flight travels",
            "ReferenceVersion": "1.0"
        },
        "Party": {
            "Sender": {
                "TravelAgencySender": {
                    "Name": "Flight travels",
                    "IATA_Number": "",
                    "AgencyID": "",
                    "Contacts": {
                        "Contact": [
                            {
                                "EmailContact": "pst@claritytts.com"
                            }
                        ]
                    }
                }
            }
        },
        "Query": {
            "OrderID": "9FAY6WU8",
            "GdsBookingReference": "OUZGTA",
            "Reshop": {
                "OrderServicing": {
                    "Add": {
                        "FlightQuery": {
                            "OriginDestinations": {
                                "OriginDestination": [
                                    {
                                        "PreviousDeparture": {
                                            "AirportCode": "YYZ",
                                            "Date": "2023-05-20"
                                        },
                                        "PreviousArrival": {
                                            "AirportCode": "YVR"
                                        },
                                        "PreviousCabinType": "Y",
                                        "Departure": {
                                            "AirportCode": "YYZ",
                                            "Date": "2023-06-10"
                                        },
                                        "Arrival": {
                                            "AirportCode": "YVR"
                                        },
                                        "CabinType": "Y"
                                    }
                                ]
                            }
                        }
                    }
                }
            }
        },
        "DataLists": {
            "PassengerList": {
                "Passenger": [
                    {
                        "PassengerID": "ADT1",
                        "PTC": "ADT",
                        "NameTitle": "Mr",
                        "FirstName": "Ram",
                        "MiddleName": "",
                        "LastName": "Kumar",
                        "DocumentNumber": "8381609825606"
                    }
                ]
            }
        },
        "Preference": {
            "CabinType": "Y"
        },
        "MetaData": {
            "TraceId": "166901478523"
        }
    }
}

Response Sample

{
    "OrderReshopRS": {
        "Document": {
            "Name": "API GATEWAY",
            "ReferenceVersion": "1.2"
        },
        "Party": {
            "Sender": {
                "TravelAgencySender": {
                    "Name": "Diva Travels",
                    "IATA_Number": "",
                    "AgencyID": "Diva Travels",
                    "Contacts": {
                        "Contact": [
                            {
                                "EmailContact": "pst@claritytts.com"
                            }
                        ]
                    }
                }
            }
        },
        "ShoppingResponseId": "1678942198305539250",
        "Success": {},
        "ReshopOffers": [
            {
                "ReshopOffer": [
                    {
                        "OfferID": "51832121678942216112638535",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "197.75",
                            "EquivCurrencyPrice": "197.75"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "197.75",
                            "EquivCurrencyPrice": "197.75"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 197.75,
                                        "EquivCurrencyPrice": 197.75
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight1"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 197.75,
                                            "EquivCurrencyPrice": 197.75
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 197.75,
                                            "EquivCurrencyPrice": 197.75
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment1",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1",
                                                "Code": "ACUD0ZBI/CLO"
                                            },
                                            "RBD": "A",
                                            "CabinType": "Y",
                                            "SeatLeft": "1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment1",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942216112638535",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942217070747154",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "197.75",
                            "EquivCurrencyPrice": "197.75"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "197.75",
                            "EquivCurrencyPrice": "197.75"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 197.75,
                                        "EquivCurrencyPrice": 197.75
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight2"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 197.75,
                                            "EquivCurrencyPrice": 197.75
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 197.75,
                                            "EquivCurrencyPrice": 197.75
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment2",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1",
                                                "Code": "ACUD0ZBI/CLO"
                                            },
                                            "RBD": "A",
                                            "CabinType": "Y",
                                            "SeatLeft": "1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment2",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942217070747154",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942217877294268",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "197.75",
                            "EquivCurrencyPrice": "197.75"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "197.75",
                            "EquivCurrencyPrice": "197.75"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 197.75,
                                        "EquivCurrencyPrice": 197.75
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight3"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 197.75,
                                            "EquivCurrencyPrice": 197.75
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 197.75,
                                            "EquivCurrencyPrice": 197.75
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment3",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1",
                                                "Code": "ACUD0ZBI/CLO"
                                            },
                                            "RBD": "A",
                                            "CabinType": "Y",
                                            "SeatLeft": "1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment3",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942217877294268",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222391889445",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "197.75",
                            "EquivCurrencyPrice": "197.75"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "197.75",
                            "EquivCurrencyPrice": "197.75"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 197.75,
                                        "EquivCurrencyPrice": 197.75
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight4"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 197.75,
                                            "EquivCurrencyPrice": 197.75
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 197.75,
                                            "EquivCurrencyPrice": 197.75
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment4",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1",
                                                "Code": "ACUD0ZBI/CLO"
                                            },
                                            "RBD": "A",
                                            "CabinType": "Y",
                                            "SeatLeft": "1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment4",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222391889445",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222392128582",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "197.75",
                            "EquivCurrencyPrice": "197.75"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "197.75",
                            "EquivCurrencyPrice": "197.75"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 197.75,
                                        "EquivCurrencyPrice": 197.75
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight5"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 197.75,
                                            "EquivCurrencyPrice": 197.75
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 197.75,
                                            "EquivCurrencyPrice": 197.75
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment5",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1",
                                                "Code": "ACUD0ZBI/CLO"
                                            },
                                            "RBD": "A",
                                            "CabinType": "Y",
                                            "SeatLeft": "1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment5",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222392128582",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222392504191",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "197.75",
                            "EquivCurrencyPrice": "197.75"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "197.75",
                            "EquivCurrencyPrice": "197.75"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 197.75,
                                        "EquivCurrencyPrice": 197.75
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight6"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 197.75,
                                            "EquivCurrencyPrice": 197.75
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 197.75,
                                            "EquivCurrencyPrice": 197.75
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment6",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1",
                                                "Code": "ACUD0ZBI/CLO"
                                            },
                                            "RBD": "A",
                                            "CabinType": "Y",
                                            "SeatLeft": "1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment6",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222392504191",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222393969203",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "197.75",
                            "EquivCurrencyPrice": "197.75"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "197.75",
                            "EquivCurrencyPrice": "197.75"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 197.75,
                                        "EquivCurrencyPrice": 197.75
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight7"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 197.75,
                                            "EquivCurrencyPrice": 197.75
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 197.75,
                                            "EquivCurrencyPrice": 197.75
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment7",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1",
                                                "Code": "ACUD0ZBI/CLO"
                                            },
                                            "RBD": "A",
                                            "CabinType": "Y",
                                            "SeatLeft": "1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment7",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222393969203",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222394543833",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "272.90",
                            "EquivCurrencyPrice": "272.90"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "272.90",
                            "EquivCurrencyPrice": "272.90"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 272.9,
                                        "EquivCurrencyPrice": 272.9
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight8"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 272.9,
                                            "EquivCurrencyPrice": 272.9
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 272.9,
                                            "EquivCurrencyPrice": 272.9
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment8",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_2",
                                                "Code": "LCQD0TBJ/CLO"
                                            },
                                            "RBD": "E",
                                            "CabinType": "Y",
                                            "SeatLeft": "1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment8",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222394543833",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222395857737",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight9"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment9",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_3",
                                                "Code": "LCUD0ZBI/CLO"
                                            },
                                            "RBD": "E",
                                            "CabinType": "Y",
                                            "SeatLeft": "1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment9",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222395857737",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222396390262",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight10"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment10",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_3",
                                                "Code": "LCUD0ZBI/CLO"
                                            },
                                            "RBD": "E",
                                            "CabinType": "Y",
                                            "SeatLeft": "1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment10",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222396390262",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222396937491",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight11"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment11 Segment12",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment11 Segment12",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222396937491",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222397130605",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight12"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment13 Segment14",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment13 Segment14",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222397130605",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222397211418",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight13"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment15 Segment16",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment15 Segment16",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222397211418",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222398757506",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight14"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment17 Segment18",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment17 Segment18",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222398757506",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222399991239",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight15"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment19 Segment20",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment19 Segment20",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222399991239",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222399505318",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight16"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment21 Segment22",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment21 Segment22",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222399505318",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222400847424",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight17"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment23 Segment24",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment23 Segment24",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222400847424",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222400235639",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight18"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment25 Segment20",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment25 Segment20",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222400235639",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222400499844",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight19"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment26 Segment22",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment26 Segment22",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222400499844",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222401435442",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight20"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment27 Segment18",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment27 Segment18",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222401435442",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222401278917",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight21"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment28 Segment29",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment28 Segment29",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222401278917",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222402402964",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight22"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment30 Segment31",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment30 Segment31",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222402402964",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222402209161",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight23"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment32 Segment12",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment32 Segment12",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222402209161",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222402316330",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight24"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment15 Segment33",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment15 Segment33",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222402316330",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222403598788",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight25"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment34 Segment35",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment34 Segment35",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222403598788",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222403288688",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight26"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment36 Segment18",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment36 Segment18",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222403288688",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222403953478",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight27"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment28 Segment37",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment28 Segment37",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222403953478",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222404877389",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight28"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment38 Segment39",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment38 Segment39",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222404877389",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222404638719",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight29"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment28 Segment40",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment28 Segment40",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222404638719",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222405469317",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight30"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment41 Segment42",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment41 Segment42",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222405469317",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222405701445",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight31"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment43 Segment42",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment43 Segment42",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222405701445",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222406298137",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight32"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment44 Segment45 Segment12",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A A",
                                            "CabinType": "Y Y Y",
                                            "SeatLeft": "1 1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment44 Segment45 Segment12",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222406298137",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222406634582",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight33"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment46 Segment47 Segment35",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A A",
                                            "CabinType": "Y Y Y",
                                            "SeatLeft": "1 1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment46 Segment47 Segment35",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222406634582",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222407770338",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight34"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment17 Segment48 Segment33",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A A",
                                            "CabinType": "Y Y Y",
                                            "SeatLeft": "1 1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment17 Segment48 Segment33",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222407770338",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222407641225",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "278.27",
                            "EquivCurrencyPrice": "278.27"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 278.27,
                                        "EquivCurrencyPrice": 278.27
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight35"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 278.27,
                                            "EquivCurrencyPrice": 278.27
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment36 Segment49 Segment16",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_4 FG_4 FG_4",
                                                "Code": "ACRD0ZBI/CLO ACRD0ZBI/CLO ACRD0ZBI/CLO"
                                            },
                                            "RBD": "A A A",
                                            "CabinType": "Y Y Y",
                                            "SeatLeft": "1 1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment36 Segment49 Segment16",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222407641225",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222407130277",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "284.20",
                            "EquivCurrencyPrice": "284.20"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "284.20",
                            "EquivCurrencyPrice": "284.20"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 284.2,
                                        "EquivCurrencyPrice": 284.2
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight36"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 284.2,
                                            "EquivCurrencyPrice": 284.2
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 284.2,
                                            "EquivCurrencyPrice": 284.2
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment19 Segment50",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1 FG_5",
                                                "Code": "ACUD0ZBI/CLO LAQD0ZEJ/CLO"
                                            },
                                            "RBD": "A L",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment19 Segment50",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222407130277",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222408683004",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "284.20",
                            "EquivCurrencyPrice": "284.20"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "284.20",
                            "EquivCurrencyPrice": "284.20"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 284.2,
                                        "EquivCurrencyPrice": 284.2
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight37"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 284.2,
                                            "EquivCurrencyPrice": 284.2
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 284.2,
                                            "EquivCurrencyPrice": 284.2
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment51 Segment52",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1 FG_5",
                                                "Code": "ACUD0ZBI/CLO LAQD0ZEJ/CLO"
                                            },
                                            "RBD": "A L",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment51 Segment52",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222408683004",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222408811554",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "284.20",
                            "EquivCurrencyPrice": "284.20"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "284.20",
                            "EquivCurrencyPrice": "284.20"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 284.2,
                                        "EquivCurrencyPrice": 284.2
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight38"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 284.2,
                                            "EquivCurrencyPrice": 284.2
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 284.2,
                                            "EquivCurrencyPrice": 284.2
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment25 Segment50",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1 FG_5",
                                                "Code": "ACUD0ZBI/CLO LAQD0ZEJ/CLO"
                                            },
                                            "RBD": "A L",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment25 Segment50",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222408811554",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222409750134",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "284.20",
                            "EquivCurrencyPrice": "284.20"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "284.20",
                            "EquivCurrencyPrice": "284.20"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 284.2,
                                        "EquivCurrencyPrice": 284.2
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight39"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 284.2,
                                            "EquivCurrencyPrice": 284.2
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 284.2,
                                            "EquivCurrencyPrice": 284.2
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment51 Segment53",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1 FG_5",
                                                "Code": "ACUD0ZBI/CLO LAQD0ZEJ/CLO"
                                            },
                                            "RBD": "A L",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment51 Segment53",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222409750134",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222409516630",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "284.20",
                            "EquivCurrencyPrice": "284.20"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "284.20",
                            "EquivCurrencyPrice": "284.20"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 284.2,
                                        "EquivCurrencyPrice": 284.2
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight40"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 284.2,
                                            "EquivCurrencyPrice": 284.2
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 284.2,
                                            "EquivCurrencyPrice": 284.2
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment17 Segment54",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1 FG_5",
                                                "Code": "ACUD0ZBI/CLO LAQD0ZEJ/CLO"
                                            },
                                            "RBD": "A L",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment17 Segment54",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222409516630",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222410609628",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "329.01",
                            "EquivCurrencyPrice": "329.01"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "329.01",
                            "EquivCurrencyPrice": "329.01"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 329.01,
                                        "EquivCurrencyPrice": 329.01
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight41"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 329.01,
                                            "EquivCurrencyPrice": 329.01
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 329.01,
                                            "EquivCurrencyPrice": 329.01
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment51 Segment50",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1 FG_5",
                                                "Code": "ACUD0ZBI/CLO LAQD0ZEJ/CLO"
                                            },
                                            "RBD": "A L",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment51 Segment50",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222410609628",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222410982523",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "329.01",
                            "EquivCurrencyPrice": "329.01"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "329.01",
                            "EquivCurrencyPrice": "329.01"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 329.01,
                                        "EquivCurrencyPrice": 329.01
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight42"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 329.01,
                                            "EquivCurrencyPrice": 329.01
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 329.01,
                                            "EquivCurrencyPrice": 329.01
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment27 Segment54",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1 FG_5",
                                                "Code": "ACUD0ZBI/CLO LAQD0ZEJ/CLO"
                                            },
                                            "RBD": "A L",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment27 Segment54",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222410982523",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222410150894",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "329.01",
                            "EquivCurrencyPrice": "329.01"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "329.01",
                            "EquivCurrencyPrice": "329.01"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 329.01,
                                        "EquivCurrencyPrice": 329.01
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight43"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 329.01,
                                            "EquivCurrencyPrice": 329.01
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 329.01,
                                            "EquivCurrencyPrice": 329.01
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment17 Segment52",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1 FG_5",
                                                "Code": "ACUD0ZBI/CLO LAQD0ZEJ/CLO"
                                            },
                                            "RBD": "A L",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment17 Segment52",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222410150894",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222411874108",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "329.01",
                            "EquivCurrencyPrice": "329.01"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "329.01",
                            "EquivCurrencyPrice": "329.01"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 329.01,
                                        "EquivCurrencyPrice": 329.01
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight44"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 329.01,
                                            "EquivCurrencyPrice": 329.01
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 329.01,
                                            "EquivCurrencyPrice": 329.01
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment19 Segment12",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1 FG_5",
                                                "Code": "ACUD0ZBI/CLO LAQD0ZEJ/CLO"
                                            },
                                            "RBD": "A L",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment19 Segment12",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222411874108",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222411287225",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "329.01",
                            "EquivCurrencyPrice": "329.01"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "329.01",
                            "EquivCurrencyPrice": "329.01"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 329.01,
                                        "EquivCurrencyPrice": 329.01
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight45"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 329.01,
                                            "EquivCurrencyPrice": 329.01
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 329.01,
                                            "EquivCurrencyPrice": 329.01
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment51 Segment20",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1 FG_5",
                                                "Code": "ACUD0ZBI/CLO LAQD0ZEJ/CLO"
                                            },
                                            "RBD": "A L",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment51 Segment20",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222411287225",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222412371623",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "329.01",
                            "EquivCurrencyPrice": "329.01"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "329.01",
                            "EquivCurrencyPrice": "329.01"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 329.01,
                                        "EquivCurrencyPrice": 329.01
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight46"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 329.01,
                                            "EquivCurrencyPrice": 329.01
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 329.01,
                                            "EquivCurrencyPrice": 329.01
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment46 Segment47 Segment55",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_1 FG_1 FG_5",
                                                "Code": "ACUD0ZBI/CLO ACUD0ZBI/CLO LAQD0ZEJ/CLO"
                                            },
                                            "RBD": "A A L",
                                            "CabinType": "Y Y Y",
                                            "SeatLeft": "1 1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment46 Segment47 Segment55",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222412371623",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222412516559",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "330.08",
                            "EquivCurrencyPrice": "330.08"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "330.08",
                            "EquivCurrencyPrice": "330.08"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 330.08,
                                        "EquivCurrencyPrice": 330.08
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight47"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 330.08,
                                            "EquivCurrencyPrice": 330.08
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 330.08,
                                            "EquivCurrencyPrice": 330.08
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment13 Segment16",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_6 FG_5",
                                                "Code": "ACUD0TBJ/CLO LAQD0ZEJ/CLO"
                                            },
                                            "RBD": "A L",
                                            "CabinType": "Y Y",
                                            "SeatLeft": "1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment13 Segment16",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222412516559",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222412533040",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "360.47",
                            "EquivCurrencyPrice": "360.47"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "360.47",
                            "EquivCurrencyPrice": "360.47"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 360.47,
                                        "EquivCurrencyPrice": 360.47
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight48"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 360.47,
                                            "EquivCurrencyPrice": 360.47
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 360.47,
                                            "EquivCurrencyPrice": 360.47
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment56 Segment57 Segment40",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_7 FG_7 FG_7",
                                                "Code": "LCVF4LBK/CLO LCVF4LBK/CLO LCVF4LBK/CLO"
                                            },
                                            "RBD": "E E E",
                                            "CabinType": "Y Y Y",
                                            "SeatLeft": "1 1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment56 Segment57 Segment40",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222412533040",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222413112512",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "360.47",
                            "EquivCurrencyPrice": "360.47"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "360.47",
                            "EquivCurrencyPrice": "360.47"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 360.47,
                                        "EquivCurrencyPrice": 360.47
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight49"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 360.47,
                                            "EquivCurrencyPrice": 360.47
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 360.47,
                                            "EquivCurrencyPrice": 360.47
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment58 Segment59 Segment53",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_7 FG_7 FG_7",
                                                "Code": "LCVF4LBK/CLO LCVF4LBK/CLO LCVF4LBK/CLO"
                                            },
                                            "RBD": "E E E",
                                            "CabinType": "Y Y Y",
                                            "SeatLeft": "1 1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment58 Segment59 Segment53",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222413112512",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    },
                    {
                        "OfferID": "51832121678942222413214596",
                        "Owner": "WS",
                        "OwnerName": "Westjet",
                        "BrandedFareOptions": [],
                        "Eticket": "true",
                        "AllowHold": "N",
                        "TimeLimits": {
                            "OfferExpirationDateTime": "2023-03-16T12:20:28",
                            "PaymentExpirationDateTime": ""
                        },
                        "PassportRequired": "N",
                        "BookingCurrencyCode": "CAD",
                        "EquivCurrencyCode": "CAD",
                        "HstPercentage": "",
                        "RewardSettings": {
                            "RewardAvailable": "N",
                            "PointTypes": [],
                            "PointValues": {}
                        },
                        "BookingFeeInfo": {
                            "FeeType": "",
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "TotalPrice": {
                            "BookingCurrencyPrice": "360.47",
                            "EquivCurrencyPrice": "360.47"
                        },
                        "BasePrice": {
                            "BookingCurrencyPrice": "360.47",
                            "EquivCurrencyPrice": "360.47"
                        },
                        "TaxPrice": {
                            "BookingCurrencyPrice": 0,
                            "EquivCurrencyPrice": 0
                        },
                        "Commission": {
                            "AgencyCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "AgencyYqCommission": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "PortalCharges": {
                            "Markup": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Surcharge": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            },
                            "Discount": {
                                "BookingCurrencyPrice": 0,
                                "EquivCurrencyPrice": 0
                            }
                        },
                        "AddOfferItem": [
                            {
                                "OfferItemID": "OFFERITEMID1",
                                "Refundable": "false",
                                "PassengerType": "ADT",
                                "PassengerQuantity": 1,
                                "TotalPriceDetail": {
                                    "TotalAmount": {
                                        "BookingCurrencyPrice": 360.47,
                                        "EquivCurrencyPrice": 360.47
                                    }
                                },
                                "Service": [
                                    {
                                        "ServiceID": "SV1",
                                        "PassengerRefs": "ADT1",
                                        "FlightRefs": "Flight50"
                                    }
                                ],
                                "FareDetail": {
                                    "PassengerRefs": "ADT1",
                                    "Price": {
                                        "TotalAmount": {
                                            "BookingCurrencyPrice": 360.47,
                                            "EquivCurrencyPrice": 360.47
                                        },
                                        "BaseAmount": {
                                            "BookingCurrencyPrice": 360.47,
                                            "EquivCurrencyPrice": 360.47
                                        },
                                        "TaxAmount": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "Commission": {
                                            "AgencyCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "AgencyYqCommission": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "BookingFee": {
                                            "BookingCurrencyPrice": 0,
                                            "EquivCurrencyPrice": 0
                                        },
                                        "PortalCharges": {
                                            "Markup": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Surcharge": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            },
                                            "Discount": {
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        },
                                        "Taxes": [
                                            {
                                                "TaxCode": "TT",
                                                "BookingCurrencyPrice": 0,
                                                "EquivCurrencyPrice": 0
                                            }
                                        ]
                                    }
                                },
                                "FareComponent": [
                                    {
                                        "PriceClassRef": "PCR_1",
                                        "SegmentRefs": "Segment60 Segment57 Segment40",
                                        "FareBasis": {
                                            "FareBasisCode": {
                                                "Refs": "FG_7 FG_7 FG_7",
                                                "Code": "LCVF4LBK/CLO LCVF4LBK/CLO LCVF4LBK/CLO"
                                            },
                                            "RBD": "E E E",
                                            "CabinType": "Y Y Y",
                                            "SeatLeft": "1 1 1"
                                        }
                                    }
                                ]
                            }
                        ],
                        "BaggageAllowance": [
                            {
                                "SegmentRefs": "Segment60 Segment57 Segment40",
                                "PassengerRefs": "ADT1",
                                "BaggageAllowanceRef": "Bag1"
                            }
                        ],
                        "SplitPaymentInfo": [
                            {
                                "AirItineraryId": "51832121678942222413214596",
                                "MultipleFop": "N",
                                "MaxCardsPerPax": 0,
                                "MaxCardsPerPaxInMFOP": 0
                            }
                        ],
                        "BookingToEquivExRate": 1,
                        "FopRef": "FOP_124_0_321_0_ALL_PRI"
                    }
                ]
            }
        ],
        "DataLists": {
            "PassengerList": {
                "Passengers": [
                    {
                        "PassengerID": "ADT1",
                        "PTC": "ADT",
                        "NameTitle": "Mr",
                        "FirstName": "Ram",
                        "MiddleName": "",
                        "LastName": "Kumar",
                        "DocumentNumber": "8381609825606"
                    }
                ]
            },
            "DisclosureList": {
                "Disclosures": []
            },
            "FareList": {
                "FareGroup": [
                    {
                        "FareGroupRef": "FG_1",
                        "FareCode": "749",
                        "FareBasisCode": "ACUD0ZBI/CLO"
                    },
                    {
                        "FareGroupRef": "FG_2",
                        "FareCode": "749",
                        "FareBasisCode": "LCQD0TBJ/CLO"
                    },
                    {
                        "FareGroupRef": "FG_3",
                        "FareCode": "749",
                        "FareBasisCode": "LCUD0ZBI/CLO"
                    },
                    {
                        "FareGroupRef": "FG_4",
                        "FareCode": "749",
                        "FareBasisCode": "ACRD0ZBI/CLO"
                    },
                    {
                        "FareGroupRef": "FG_5",
                        "FareCode": "749",
                        "FareBasisCode": "LAQD0ZEJ/CLO"
                    },
                    {
                        "FareGroupRef": "FG_6",
                        "FareCode": "749",
                        "FareBasisCode": "ACUD0TBJ/CLO"
                    },
                    {
                        "FareGroupRef": "FG_7",
                        "FareCode": "749",
                        "FareBasisCode": "LCVF4LBK/CLO"
                    }
                ]
            },
            "FlightSegmentList": {
                "FlightSegment": [
                    {
                        "SegmentKey": "Segment1",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "16:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "18:00:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "719"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "719"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "5 H 0 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment2",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "15:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "17:03:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "717"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "717"
                        },
                        "Equipment": {
                            "AircraftCode": "7M8",
                            "Name": "7M8"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "5 H 3 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment3",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "06:30:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "08:35:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "701"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "701"
                        },
                        "Equipment": {
                            "AircraftCode": "73W",
                            "Name": "Boeing 737-700 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "5 H 5 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment4",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "21:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "23:05:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "729"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "729"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "5 H 5 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment5",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "22:15:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-11",
                            "Time": "00:20:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "731"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "731"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "5 H 5 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment6",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "09:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "11:07:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "705"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "705"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "5 H 7 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment7",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "10:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "12:07:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "707"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "707"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "5 H 7 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment8",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "12:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "14:03:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "711"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "711"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "5 H 3 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment9",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "17:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "19:05:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "721"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "721"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "5 H 5 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment10",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "20:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "22:05:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "727"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "727"
                        },
                        "Equipment": {
                            "AircraftCode": "7M8",
                            "Name": "7M8"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "5 H 5 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment11",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "20:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "22:12:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "675"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "675"
                        },
                        "Equipment": {
                            "AircraftCode": "7M8",
                            "Name": "7M8"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 12 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment12",
                        "Departure": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "23:15:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "23:41:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "135"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "135"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 26 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment13",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "09:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YEG",
                            "Date": "2023-06-10",
                            "Time": "11:08:00",
                            "AirportName": "Edmonton International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "421"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "421"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 8 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment14",
                        "Departure": {
                            "AirportCode": "YEG",
                            "Date": "2023-06-10",
                            "Time": "12:15:00",
                            "AirportName": "Edmonton International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "12:49:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "167"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "167"
                        },
                        "Equipment": {
                            "AircraftCode": "7M8",
                            "Name": "7M8"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 34 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment15",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "12:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YEG",
                            "Date": "2023-06-10",
                            "Time": "14:08:00",
                            "AirportName": "Edmonton International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "425"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "425"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 8 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment16",
                        "Departure": {
                            "AirportCode": "YEG",
                            "Date": "2023-06-10",
                            "Time": "15:15:00",
                            "AirportName": "Edmonton International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "15:49:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "171"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "171"
                        },
                        "Equipment": {
                            "AircraftCode": "73W",
                            "Name": "Boeing 737-700 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 34 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment17",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "10:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "12:13:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "655"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "655"
                        },
                        "Equipment": {
                            "AircraftCode": "7M8",
                            "Name": "7M8"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 13 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment18",
                        "Departure": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "13:30:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "13:57:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "115"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "115"
                        },
                        "Equipment": {
                            "AircraftCode": "73W",
                            "Name": "Boeing 737-700 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 27 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment19",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "16:30:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "18:30:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "669"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "669"
                        },
                        "Equipment": {
                            "AircraftCode": "789",
                            "Name": "789"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 0 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment20",
                        "Departure": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "20:00:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "20:32:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "66"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "66"
                        },
                        "Equipment": {
                            "AircraftCode": "7M8",
                            "Name": "7M8"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 32 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment21",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "17:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YEG",
                            "Date": "2023-06-10",
                            "Time": "19:09:00",
                            "AirportName": "Edmonton International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "435"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "435"
                        },
                        "Equipment": {
                            "AircraftCode": "73W",
                            "Name": "Boeing 737-700 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 9 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment22",
                        "Departure": {
                            "AirportCode": "YEG",
                            "Date": "2023-06-10",
                            "Time": "20:30:00",
                            "AirportName": "Edmonton International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "21:03:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "175"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "175"
                        },
                        "Equipment": {
                            "AircraftCode": "73W",
                            "Name": "Boeing 737-700 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 33 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment23",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "06:30:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "08:40:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "653"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "653"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 10 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment24",
                        "Departure": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "10:30:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "10:57:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "109"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "109"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 27 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment25",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "15:45:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "17:45:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "665"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "665"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 0 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment26",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "16:15:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YEG",
                            "Date": "2023-06-10",
                            "Time": "18:23:00",
                            "AirportName": "Edmonton International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "433"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "433"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 8 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment27",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "09:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "11:13:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "651"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "651"
                        },
                        "Equipment": {
                            "AircraftCode": "7M8",
                            "Name": "7M8"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 13 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment28",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "02:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "04:30:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8545"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8545"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 30 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment29",
                        "Departure": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "06:30:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "06:59:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "101"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "101"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 29 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment30",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "17:10:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YWG",
                            "Date": "2023-06-10",
                            "Time": "18:46:00",
                            "AirportName": "Winnipeg / James Armstrong Richardson International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "489"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "489"
                        },
                        "Equipment": {
                            "AircraftCode": "73W",
                            "Name": "Boeing 737-700 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "2 H 36 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment31",
                        "Departure": {
                            "AirportCode": "YWG",
                            "Date": "2023-06-10",
                            "Time": "21:35:00",
                            "AirportName": "Winnipeg / James Armstrong Richardson International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "22:34:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "483"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "483"
                        },
                        "Equipment": {
                            "AircraftCode": "73W",
                            "Name": "Boeing 737-700 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "2 H 59 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment32",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "18:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "20:12:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "671"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "671"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 12 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment33",
                        "Departure": {
                            "AirportCode": "YEG",
                            "Date": "2023-06-10",
                            "Time": "17:15:00",
                            "AirportName": "Edmonton International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "17:48:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "173"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "173"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 33 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment34",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "22:15:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-11",
                            "Time": "00:27:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "679"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "679"
                        },
                        "Equipment": {
                            "AircraftCode": "73W",
                            "Name": "Boeing 737-700 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 12 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment35",
                        "Departure": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-11",
                            "Time": "04:00:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-11",
                            "Time": "04:05:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8591"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8591"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 5 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment36",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "08:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "10:13:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "649"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "649"
                        },
                        "Equipment": {
                            "AircraftCode": "73W",
                            "Name": "Boeing 737-700 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 13 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment37",
                        "Departure": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "07:30:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "07:59:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "103"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "103"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 29 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment38",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "17:45:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YXE",
                            "Date": "2023-06-10",
                            "Time": "20:30:00",
                            "AirportName": "Saskatoon John G. Diefenbaker International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8586"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8586"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 45 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment39",
                        "Departure": {
                            "AirportCode": "YXE",
                            "Date": "2023-06-10",
                            "Time": "22:00:00",
                            "AirportName": "Saskatoon John G. Diefenbaker International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-11",
                            "Time": "00:35:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8682"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8682"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "3 H 35 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment40",
                        "Departure": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "08:30:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "08:58:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "105"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "105"
                        },
                        "Equipment": {
                            "AircraftCode": "7M8",
                            "Name": "7M8"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 28 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment41",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "17:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YOW",
                            "Date": "2023-06-10",
                            "Time": "18:08:00",
                            "AirportName": "Ottawa Macdonald-Cartier International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "3474"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "3474"
                        },
                        "Equipment": {
                            "AircraftCode": "DH4",
                            "Name": "De Havilland Canada DHC-8-400 Dash 8Q"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 8 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment42",
                        "Departure": {
                            "AirportCode": "YOW",
                            "Date": "2023-06-10",
                            "Time": "22:00:00",
                            "AirportName": "Ottawa Macdonald-Cartier International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-11",
                            "Time": "00:30:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8733"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8733"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "5 H 30 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment43",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "17:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YOW",
                            "Date": "2023-06-10",
                            "Time": "18:30:00",
                            "AirportName": "Ottawa Macdonald-Cartier International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8529"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8529"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 30 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment44",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "18:15:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YEG",
                            "Date": "2023-06-10",
                            "Time": "20:24:00",
                            "AirportName": "Edmonton International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "437"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "437"
                        },
                        "Equipment": {
                            "AircraftCode": "73W",
                            "Name": "Boeing 737-700 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 9 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment45",
                        "Departure": {
                            "AirportCode": "YEG",
                            "Date": "2023-06-10",
                            "Time": "21:15:00",
                            "AirportName": "Edmonton International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "22:09:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "3288"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "3288"
                        },
                        "Equipment": {
                            "AircraftCode": "DH4",
                            "Name": "De Havilland Canada DHC-8-400 Dash 8Q"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "0 H 54 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment46",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "22:15:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YEG",
                            "Date": "2023-06-11",
                            "Time": "00:24:00",
                            "AirportName": "Edmonton International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "445"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "445"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 9 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment47",
                        "Departure": {
                            "AirportCode": "YEG",
                            "Date": "2023-06-11",
                            "Time": "01:00:00",
                            "AirportName": "Edmonton International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-11",
                            "Time": "02:00:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8491"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8491"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 0 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment48",
                        "Departure": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "14:00:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YEG",
                            "Date": "2023-06-10",
                            "Time": "14:52:00",
                            "AirportName": "Edmonton International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "3135"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "3135"
                        },
                        "Equipment": {
                            "AircraftCode": "DH4",
                            "Name": "De Havilland Canada DHC-8-400 Dash 8Q"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "0 H 52 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment49",
                        "Departure": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "11:00:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YEG",
                            "Date": "2023-06-10",
                            "Time": "11:52:00",
                            "AirportName": "Edmonton International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "3317"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "3317"
                        },
                        "Equipment": {
                            "AircraftCode": "DH4",
                            "Name": "De Havilland Canada DHC-8-400 Dash 8Q"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "0 H 52 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment50",
                        "Departure": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "19:30:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "19:55:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "127"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "127"
                        },
                        "Equipment": {
                            "AircraftCode": "73W",
                            "Name": "Boeing 737-700 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 25 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment51",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "13:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "15:11:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "999"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "999"
                        },
                        "Equipment": {
                            "AircraftCode": "7M8",
                            "Name": "7M8"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "4 H 11 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment52",
                        "Departure": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "16:30:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "16:57:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "121"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "121"
                        },
                        "Equipment": {
                            "AircraftCode": "73W",
                            "Name": "Boeing 737-700 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 27 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment53",
                        "Departure": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "17:30:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "17:55:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "123"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "123"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 25 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment54",
                        "Departure": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "15:30:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-10",
                            "Time": "15:57:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "119"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "119"
                        },
                        "Equipment": {
                            "AircraftCode": "73W",
                            "Name": "Boeing 737-700 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 27 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment55",
                        "Departure": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-11",
                            "Time": "06:30:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YVR",
                            "Date": "2023-06-11",
                            "Time": "06:59:00",
                            "AirportName": "Vancouver International Airport",
                            "Terminal": {
                                "Name": "M"
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "101"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "101"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "1 H 29 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment56",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "04:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YWG",
                            "Date": "2023-06-10",
                            "Time": "06:00:00",
                            "AirportName": "Winnipeg / James Armstrong Richardson International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8526"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8526"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "3 H 0 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment57",
                        "Departure": {
                            "AirportCode": "YWG",
                            "Date": "2023-06-10",
                            "Time": "06:30:00",
                            "AirportName": "Winnipeg / James Armstrong Richardson International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "07:36:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "271"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "271"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "2 H 6 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment58",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "12:15:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": "3"
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YWG",
                            "Date": "2023-06-10",
                            "Time": "13:49:00",
                            "AirportName": "Winnipeg / James Armstrong Richardson International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "475"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "475"
                        },
                        "Equipment": {
                            "AircraftCode": "73W",
                            "Name": "Boeing 737-700 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "2 H 34 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment59",
                        "Departure": {
                            "AirportCode": "YWG",
                            "Date": "2023-06-10",
                            "Time": "15:00:00",
                            "AirportName": "Winnipeg / James Armstrong Richardson International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YYC",
                            "Date": "2023-06-10",
                            "Time": "16:05:00",
                            "AirportName": "Calgary International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "269"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "269"
                        },
                        "Equipment": {
                            "AircraftCode": "73W",
                            "Name": "Boeing 737-700 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "I"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "2 H 5 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    },
                    {
                        "SegmentKey": "Segment60",
                        "Departure": {
                            "AirportCode": "YYZ",
                            "Date": "2023-06-10",
                            "Time": "03:00:00",
                            "AirportName": "Lester B. Pearson International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "Arrival": {
                            "AirportCode": "YWG",
                            "Date": "2023-06-10",
                            "Time": "05:30:00",
                            "AirportName": "Winnipeg / James Armstrong Richardson International Airport",
                            "Terminal": {
                                "Name": ""
                            }
                        },
                        "MarketingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8628"
                        },
                        "OperatingCarrier": {
                            "AirlineID": "WS",
                            "Name": "Westjet",
                            "FlightNumber": "8628"
                        },
                        "Equipment": {
                            "AircraftCode": "73H",
                            "Name": "Boeing 737-800 (winglets) pax"
                        },
                        "Code": {
                            "MarriageGroup": "O"
                        },
                        "FlightDetail": {
                            "FlightDuration": {
                                "Value": "3 H 30 M"
                            },
                            "Stops": {
                                "Value": "0"
                            },
                            "InterMediate": [],
                            "AirMilesFlown": 0
                        },
                        "BrandId": ""
                    }
                ]
            },
            "FlightList": {
                "Flight": [
                    {
                        "FlightKey": "Flight1",
                        "Journey": {
                            "Time": "5 H 0 M",
                            "Stops": 0
                        },
                        "SegmentReferences": "Segment1"
                    },
                    {
                        "FlightKey": "Flight2",
                        "Journey": {
                            "Time": "5 H 3 M",
                            "Stops": 0
                        },
                        "SegmentReferences": "Segment2"
                    },
                    {
                        "FlightKey": "Flight3",
                        "Journey": {
                            "Time": "5 H 5 M",
                            "Stops": 0
                        },
                        "SegmentReferences": "Segment3"
                    },
                    {
                        "FlightKey": "Flight4",
                        "Journey": {
                            "Time": "5 H 5 M",
                            "Stops": 0
                        },
                        "SegmentReferences": "Segment4"
                    },
                    {
                        "FlightKey": "Flight5",
                        "Journey": {
                            "Time": "5 H 5 M",
                            "Stops": 0
                        },
                        "SegmentReferences": "Segment5"
                    },
                    {
                        "FlightKey": "Flight6",
                        "Journey": {
                            "Time": "5 H 7 M",
                            "Stops": 0
                        },
                        "SegmentReferences": "Segment6"
                    },
                    {
                        "FlightKey": "Flight7",
                        "Journey": {
                            "Time": "5 H 7 M",
                            "Stops": 0
                        },
                        "SegmentReferences": "Segment7"
                    },
                    {
                        "FlightKey": "Flight8",
                        "Journey": {
                            "Time": "5 H 3 M",
                            "Stops": 0
                        },
                        "SegmentReferences": "Segment8"
                    },
                    {
                        "FlightKey": "Flight9",
                        "Journey": {
                            "Time": "5 H 5 M",
                            "Stops": 0
                        },
                        "SegmentReferences": "Segment9"
                    },
                    {
                        "FlightKey": "Flight10",
                        "Journey": {
                            "Time": "5 H 5 M",
                            "Stops": 0
                        },
                        "SegmentReferences": "Segment10"
                    },
                    {
                        "FlightKey": "Flight11",
                        "Journey": {
                            "Time": "6 H 41 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment11 Segment12"
                    },
                    {
                        "FlightKey": "Flight12",
                        "Journey": {
                            "Time": "6 H 49 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment13 Segment14"
                    },
                    {
                        "FlightKey": "Flight13",
                        "Journey": {
                            "Time": "6 H 49 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment15 Segment16"
                    },
                    {
                        "FlightKey": "Flight14",
                        "Journey": {
                            "Time": "6 H 57 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment17 Segment18"
                    },
                    {
                        "FlightKey": "Flight15",
                        "Journey": {
                            "Time": "7 H 2 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment19 Segment20"
                    },
                    {
                        "FlightKey": "Flight16",
                        "Journey": {
                            "Time": "7 H 3 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment21 Segment22"
                    },
                    {
                        "FlightKey": "Flight17",
                        "Journey": {
                            "Time": "7 H 27 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment23 Segment24"
                    },
                    {
                        "FlightKey": "Flight18",
                        "Journey": {
                            "Time": "7 H 47 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment25 Segment20"
                    },
                    {
                        "FlightKey": "Flight19",
                        "Journey": {
                            "Time": "7 H 48 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment26 Segment22"
                    },
                    {
                        "FlightKey": "Flight20",
                        "Journey": {
                            "Time": "7 H 57 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment27 Segment18"
                    },
                    {
                        "FlightKey": "Flight21",
                        "Journey": {
                            "Time": "7 H 59 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment28 Segment29"
                    },
                    {
                        "FlightKey": "Flight22",
                        "Journey": {
                            "Time": "8 H 24 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment30 Segment31"
                    },
                    {
                        "FlightKey": "Flight23",
                        "Journey": {
                            "Time": "8 H 41 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment32 Segment12"
                    },
                    {
                        "FlightKey": "Flight24",
                        "Journey": {
                            "Time": "8 H 48 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment15 Segment33"
                    },
                    {
                        "FlightKey": "Flight25",
                        "Journey": {
                            "Time": "8 H 50 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment34 Segment35"
                    },
                    {
                        "FlightKey": "Flight26",
                        "Journey": {
                            "Time": "8 H 57 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment36 Segment18"
                    },
                    {
                        "FlightKey": "Flight27",
                        "Journey": {
                            "Time": "8 H 59 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment28 Segment37"
                    },
                    {
                        "FlightKey": "Flight28",
                        "Journey": {
                            "Time": "9 H 50 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment38 Segment39"
                    },
                    {
                        "FlightKey": "Flight29",
                        "Journey": {
                            "Time": "9 H 58 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment28 Segment40"
                    },
                    {
                        "FlightKey": "Flight30",
                        "Journey": {
                            "Time": "10 H 30 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment41 Segment42"
                    },
                    {
                        "FlightKey": "Flight31",
                        "Journey": {
                            "Time": "10 H 30 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment43 Segment42"
                    },
                    {
                        "FlightKey": "Flight32",
                        "Journey": {
                            "Time": "8 H 26 M",
                            "Stops": 2
                        },
                        "SegmentReferences": "Segment44 Segment45 Segment12"
                    },
                    {
                        "FlightKey": "Flight33",
                        "Journey": {
                            "Time": "8 H 50 M",
                            "Stops": 2
                        },
                        "SegmentReferences": "Segment46 Segment47 Segment35"
                    },
                    {
                        "FlightKey": "Flight34",
                        "Journey": {
                            "Time": "10 H 48 M",
                            "Stops": 2
                        },
                        "SegmentReferences": "Segment17 Segment48 Segment33"
                    },
                    {
                        "FlightKey": "Flight35",
                        "Journey": {
                            "Time": "10 H 49 M",
                            "Stops": 2
                        },
                        "SegmentReferences": "Segment36 Segment49 Segment16"
                    },
                    {
                        "FlightKey": "Flight36",
                        "Journey": {
                            "Time": "6 H 25 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment19 Segment50"
                    },
                    {
                        "FlightKey": "Flight37",
                        "Journey": {
                            "Time": "6 H 57 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment51 Segment52"
                    },
                    {
                        "FlightKey": "Flight38",
                        "Journey": {
                            "Time": "7 H 10 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment25 Segment50"
                    },
                    {
                        "FlightKey": "Flight39",
                        "Journey": {
                            "Time": "7 H 55 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment51 Segment53"
                    },
                    {
                        "FlightKey": "Flight40",
                        "Journey": {
                            "Time": "8 H 57 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment17 Segment54"
                    },
                    {
                        "FlightKey": "Flight41",
                        "Journey": {
                            "Time": "9 H 55 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment51 Segment50"
                    },
                    {
                        "FlightKey": "Flight42",
                        "Journey": {
                            "Time": "9 H 57 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment27 Segment54"
                    },
                    {
                        "FlightKey": "Flight43",
                        "Journey": {
                            "Time": "9 H 57 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment17 Segment52"
                    },
                    {
                        "FlightKey": "Flight44",
                        "Journey": {
                            "Time": "10 H 11 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment19 Segment12"
                    },
                    {
                        "FlightKey": "Flight45",
                        "Journey": {
                            "Time": "10 H 32 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment51 Segment20"
                    },
                    {
                        "FlightKey": "Flight46",
                        "Journey": {
                            "Time": "11 H 44 M",
                            "Stops": 2
                        },
                        "SegmentReferences": "Segment46 Segment47 Segment55"
                    },
                    {
                        "FlightKey": "Flight47",
                        "Journey": {
                            "Time": "9 H 49 M",
                            "Stops": 1
                        },
                        "SegmentReferences": "Segment13 Segment16"
                    },
                    {
                        "FlightKey": "Flight48",
                        "Journey": {
                            "Time": "7 H 58 M",
                            "Stops": 2
                        },
                        "SegmentReferences": "Segment56 Segment57 Segment40"
                    },
                    {
                        "FlightKey": "Flight49",
                        "Journey": {
                            "Time": "8 H 40 M",
                            "Stops": 2
                        },
                        "SegmentReferences": "Segment58 Segment59 Segment53"
                    },
                    {
                        "FlightKey": "Flight50",
                        "Journey": {
                            "Time": "8 H 58 M",
                            "Stops": 2
                        },
                        "SegmentReferences": "Segment60 Segment57 Segment40"
                    }
                ]
            },
            "OriginDestinationList": {
                "OriginDestination": [
                    {
                        "OriginDestinationKey": "OD1",
                        "DepartureCode": "YYZ",
                        "ArrivalCode": "YVR",
                        "FlightReferences": "Flight1 Flight2 Flight3 Flight4 Flight5 Flight6 Flight7 Flight8 Flight9 Flight10 Flight11 Flight12 Flight13 Flight14 Flight15 Flight16 Flight17 Flight18 Flight19 Flight20 Flight21 Flight22 Flight23 Flight24 Flight25 Flight26 Flight27 Flight28 Flight29 Flight30 Flight31 Flight32 Flight33 Flight34 Flight35 Flight36 Flight37 Flight38 Flight39 Flight40 Flight41 Flight42 Flight43 Flight44 Flight45 Flight46 Flight47 Flight48 Flight49 Flight50"
                    }
                ]
            },
            "PriceClassList": {
                "PriceClass": [
                    {
                        "PriceClassID": "PCR_1",
                        "Name": "",
                        "Code": "",
                        "Descriptions": {
                            "Description": []
                        }
                    }
                ]
            },
            "BaggageAllowanceList": {
                "BaggageAllowance": [
                    {
                        "BaggageAllowanceID": "Bag1",
                        "BaggageCategory": "Checked",
                        "AllowanceDescription": {
                            "ApplicableParty": "Traveler",
                            "Description": "CHECKED ALLOWANCE"
                        },
                        "PieceAllowance": {
                            "ApplicableParty": "Traveler",
                            "TotalQuantity": "0",
                            "Unit": "kg"
                        }
                    }
                ]
            },
            "FopList": [
                {
                    "CC": {
                        "Allowed": "Y",
                        "Types": {
                            "AX": {
                                "F": {
                                    "BookingCurrencyPrice": "10",
                                    "EquivCurrencyPrice": "10"
                                },
                                "P": 0
                            },
                            "MC": {
                                "F": {
                                    "BookingCurrencyPrice": 0,
                                    "EquivCurrencyPrice": 0
                                },
                                "P": 0
                            },
                            "VI": {
                                "F": {
                                    "BookingCurrencyPrice": "2",
                                    "EquivCurrencyPrice": "2"
                                },
                                "P": 0
                            },
                            "JC": {
                                "F": {
                                    "BookingCurrencyPrice": 0,
                                    "EquivCurrencyPrice": 0
                                },
                                "P": 0
                            },
                            "DC": {
                                "F": {
                                    "BookingCurrencyPrice": 0,
                                    "EquivCurrencyPrice": 0
                                },
                                "P": 0
                            },
                            "DUS": {
                                "F": {
                                    "BookingCurrencyPrice": 0,
                                    "EquivCurrencyPrice": 0
                                },
                                "P": 0
                            },
                            "MA": {
                                "F": {
                                    "BookingCurrencyPrice": 0,
                                    "EquivCurrencyPrice": 0
                                },
                                "P": 0
                            },
                            "DS": {
                                "F": {
                                    "BookingCurrencyPrice": 0,
                                    "EquivCurrencyPrice": 0
                                },
                                "P": 0
                            },
                            "TP": {
                                "F": {
                                    "BookingCurrencyPrice": 0,
                                    "EquivCurrencyPrice": 0
                                },
                                "P": 0
                            }
                        }
                    },
                    "DC": {
                        "Allowed": "Y",
                        "Types": {
                            "MC": {
                                "F": {
                                    "BookingCurrencyPrice": 0,
                                    "EquivCurrencyPrice": 0
                                },
                                "P": 0
                            },
                            "VI": {
                                "F": {
                                    "BookingCurrencyPrice": 0,
                                    "EquivCurrencyPrice": 0
                                },
                                "P": 0
                            },
                            "RU": {
                                "F": {
                                    "BookingCurrencyPrice": 0,
                                    "EquivCurrencyPrice": 0
                                },
                                "P": 0
                            }
                        }
                    },
                    "CASH": {
                        "Allowed": "N",
                        "Types": {}
                    },
                    "CHEQUE": {
                        "Allowed": "Y",
                        "Types": {}
                    },
                    "ACH": {
                        "Allowed": "Y",
                        "Types": {}
                    },
                    "PG": {
                        "Allowed": "Y",
                        "Types": {}
                    },
                    "FopKey": "FOP_124_0_321_0_ALL_PRI"
                }
            ]
        },
        "MetaData": {}
    }
}

Try it out!