for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Amadeus\Client\Struct\Travel\ServiceList;
/**
* Offer
*
* @package Amadeus\Client\Struct\Travel\ServiceList
* @author Artem Zakharchenko <[email protected]>
*/
class Offer
{
* @var string
public $OfferID;
public $OwnerCode;
* @var OfferItem
public $OfferItem;
* @param string $offerId
* @param string $ownerCode
* @param OfferItem $offerItem
public function __construct($offerId, $ownerCode, OfferItem $offerItem)
$this->OfferID = $offerId;
$this->OwnerCode = $ownerCode;
$this->OfferItem = $offerItem;
}