* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\Webservice\Query; use PrestaShop\PrestaShop\Core\Domain\Webservice\ValueObject\WebserviceKeyId; /** * Get webservice key data for editing */ class GetWebserviceKeyForEditing { /** * @var WebserviceKeyId */ private $webserviceKeyId; /** * @param int $webserviceKeyId */ public function __construct($webserviceKeyId) { $this->webserviceKeyId = new WebserviceKeyId($webserviceKeyId); } /** * @return WebserviceKeyId */ public function getWebserviceKeyId() { return $this->webserviceKeyId; } }