* @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\OAuth\Query; use PrestaShop\Module\PrestashopCheckout\Customer\ValueObject\CustomerId; class GetPayPalGetUserIdTokenQuery { /** * @var CustomerId|null */ private $customerId; /** * @param CustomerId|null $customerId */ public function __construct(CustomerId $customerId = null) { $this->customerId = $customerId; } /** * @return CustomerId|null */ public function getCustomerId() { return $this->customerId; } }