* @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\Command; use PrestaShop\Module\PrestashopCheckout\Customer\ValueObject\CustomerId; use PrestaShop\Module\PrestashopCheckout\PayPal\PaymentToken\ValueObject\PaymentTokenId; class DeletePaymentTokenCommand { /** @var PaymentTokenId */ private $paymentTokenId; /** @var CustomerId */ private $customerId; /** * @param PaymentTokenId $paymentTokenId * @param CustomerId $customerId */ public function __construct(PaymentTokenId $paymentTokenId, CustomerId $customerId) { $this->paymentTokenId = $paymentTokenId; $this->customerId = $customerId; } /** * @return PaymentTokenId */ public function getPaymentTokenId() { return $this->paymentTokenId; } /** * @return CustomerId */ public function getCustomerId() { return $this->customerId; } }