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