| Current Path : /home/rtorresani/www/vendor/magento/module-catalog/Api/Data/ |
| Current File : //home/rtorresani/www/vendor/magento/module-catalog/Api/Data/ProductWebsiteLinkInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Api\Data;
/**
* @api
* @since 100.0.2
*/
interface ProductWebsiteLinkInterface
{
/**
* @return string
*/
public function getSku();
/**
* @param string $sku
* @return $this
*/
public function setSku($sku);
/**
* Get website ids
*
* @return int
*/
public function getWebsiteId();
/**
* Set website id
*
* @param int $websiteId
* @return $this
*/
public function setWebsiteId($websiteId);
}