From 958b5584ae614faedce6322fd70b3007324b792d Mon Sep 17 00:00:00 2001 From: Artem Zakharchenko Date: Sat, 25 May 2019 09:54:10 +0300 Subject: [PATCH] MasterPricer: Add flight opts BD & UBD (#321) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ‘BD’ – will restrict the transaction to only bundled fares (i.e. will exclude unbundled fares) ‘UBD’ – will restrict the transaction to only unbundled fares (i.e. will return only fares with FTC EOU and ERU) --- src/Amadeus/Client/RequestOptions/MpBaseOptions.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Amadeus/Client/RequestOptions/MpBaseOptions.php b/src/Amadeus/Client/RequestOptions/MpBaseOptions.php index f9539d529..54789fa85 100644 --- a/src/Amadeus/Client/RequestOptions/MpBaseOptions.php +++ b/src/Amadeus/Client/RequestOptions/MpBaseOptions.php @@ -52,6 +52,8 @@ class MpBaseOptions extends Base const FLIGHTOPT_IN_FLIGHT_SERVICES = 'IFS'; const FLIGHTOPT_ONLY_PTC = 'PTC'; const FLIGHTOPT_MINIRULES = 'MNR'; + const FLIGHTOPT_ONLY_BUNDLED_FARES = 'BD'; + const FLIGHTOPT_ONLY_UNBUNDLED_FARES = 'UBD'; const CORPORATE_QUALIFIER_AMADEUS_NEGO = 'RC'; const CORPORATE_QUALIFIER_UNIFARE = 'RW';