20 lines
454 B
PHP
Executable File
20 lines
454 B
PHP
Executable File
<?php
|
|
namespace Magento\Customer\Api\Data;
|
|
|
|
/**
|
|
* ExtensionInterface class for @see \Magento\Customer\Api\Data\GroupInterface
|
|
*/
|
|
interface GroupExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface
|
|
{
|
|
/**
|
|
* @return int[]|null
|
|
*/
|
|
public function getExcludeWebsiteIds();
|
|
|
|
/**
|
|
* @param int[] $excludeWebsiteIds
|
|
* @return $this
|
|
*/
|
|
public function setExcludeWebsiteIds($excludeWebsiteIds);
|
|
}
|