* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 */ namespace PrestaShop\Module\PrestashopCheckout\PayPal\PaymentToken\Event; class PaymentTokenCreatedEvent extends PaymentTokenEvent { /** * @var string */ private $merchantId; public function __construct($resource, $merchantId) { parent::__construct($resource); $this->merchantId = $merchantId; } /** * @return string */ public function getMerchantId() { return $this->merchantId; } }