for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* (c) Nimbles b.v. <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Nimbles\CMTelecom\Model;
/**
* Class IBANTransaction
class IBANTransaction
{
/** @var string */
private $transactionId;
private $merchantReference;
private $entranceCode;
private $authenticationUrl;
* @param string $transactionId
* @param string $merchantReference
* @param string $entranceCode
* @param string|null $authenticationUrl
public function __construct(string $transactionId, string $merchantReference, string $entranceCode, string $authenticationUrl = null)
$this->transactionId = $transactionId;
$this->merchantReference = $merchantReference;
$this->entranceCode = $entranceCode;
$this->authenticationUrl = $authenticationUrl;
}
* @return string
public function getTransactionId() : string
return $this->transactionId;
public function getMerchantReference() : string
return $this->merchantReference;
public function getEntranceCode() : string
return $this->entranceCode;
* @return string|null
public function getAuthenticationUrl()
return $this->authenticationUrl;