for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Amadeus\Client\Struct\Travel\OrderChange;
/**
* SelectedOfferItem
*
* @package Amadeus\Client\Struct\Travel\OrderRetrieve
* @author Artem Zakharchenko <[email protected]>
*/
class SelectedOfferItem
{
* @var string
public $OfferItemRefID;
public $PaxRefID;
* @var SelectedSeat
public $SelectedSeat;
* @param string $offerItemRefId
* @param string $paxRefId
public function __construct($offerItemRefId, $paxRefId)
$this->OfferItemRefID = $offerItemRefId;
$this->PaxRefID = $paxRefId;
}
public function setSelectedSeat(SelectedSeat $selectedSeat)
$this->SelectedSeat = $selectedSeat;