Skip to content

Commit

Permalink
Add docs and changelog entry for #217
Browse files Browse the repository at this point in the history
  • Loading branch information
DerMika committed Aug 4, 2018
1 parent 4c246c5 commit a8d3424
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Release 1.8.0 (UNRELEASED)
* Added support for Ticketing Price Scheme option in ``Fare_MasterPricerTravelBoardSearch`` (https://github.com/amabnl/amadeus-ws-client/pull/193) - Artem Zakharchenko
* Added support for cabin options on itinerary-level in ``Fare_MasterPricerTravelBoardSearch`` (https://github.com/amabnl/amadeus-ws-client/pull/202) - Michal Hernas
* Added support for OptionDetails when proving pricing options overrides in ``Fare_PricePNRWithBookingClass`` (v13+) and associated messages (https://github.com/amabnl/amadeus-ws-client/pull/217) - LeoTravel
* Implemented ``Ticket_RetrieveListOfTSM`` (https://github.com/amabnl/amadeus-ws-client/pull/194) - Michal Hernas
* Implemented ``Ticket_CreateTASF`` (https://github.com/amabnl/amadeus-ws-client/pull/197) - Artem Zakharchenko
* Implemented ``PNR_Ignore`` (https://github.com/amabnl/amadeus-ws-client/pull/198) - Michael Mueller
Expand Down
20 changes: 20 additions & 0 deletions docs/samples/pricepnr.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,26 @@ Fare types: Take into account Published Fares, Unifares, Negotiated fares:
])
);
Overrides with Option Details
=============================

Show Baggage Fares - include 1 free item of baggage when pricing:

.. code-block:: php
use Amadeus\Client\RequestOptions\FarePricePnrWithBookingClassOptions;
$pricingResponse = $client->farePricePnrWithBookingClass(
new FarePricePnrWithBookingClassOptions([
'overrideOptionsWithCriteria' => [
[
'key' => 'SBF',
'optionDetail' => '1'
]
]
])
);
Currency override
=================

Expand Down

0 comments on commit a8d3424

Please sign in to comment.