| Current Path : /var/www/html/generated/code/Magento/Customer/Api/Data/ |
| Current File : /var/www/html/generated/code/Magento/Customer/Api/Data/CustomerExtensionInterface.php |
<?php
namespace Magento\Customer\Api\Data;
/**
* ExtensionInterface class for @see \Magento\Customer\Api\Data\CustomerInterface
*/
interface CustomerExtensionInterface extends \Magento\Framework\Api\ExtensionAttributesInterface
{
/**
* @return integer|null
*/
public function getAssistanceAllowed();
/**
* @param integer $assistanceAllowed
* @return $this
*/
public function setAssistanceAllowed($assistanceAllowed);
/**
* @return boolean|null
*/
public function getIsSubscribed();
/**
* @param boolean $isSubscribed
* @return $this
*/
public function setIsSubscribed($isSubscribed);
/**
* @return string|null
*/
public function getAmazonId();
/**
* @param string $amazonId
* @return $this
*/
public function setAmazonId($amazonId);
/**
* @return string|null
*/
public function getVertexCustomerCode();
/**
* @param string $vertexCustomerCode
* @return $this
*/
public function setVertexCustomerCode($vertexCustomerCode);
/**
* @return string|null
*/
public function getVertexCustomerCountry();
/**
* @param string $vertexCustomerCountry
* @return $this
*/
public function setVertexCustomerCountry($vertexCustomerCountry);
}