* @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\Customer\QueryResult; /** * Class GeneralInformation. */ class GeneralInformation { /** * @var string */ private $privateNote; /** * @var bool */ private $customerBySameEmailExists; /** * @param string $privateNote * @param bool $customerBySameEmailExists */ public function __construct($privateNote, $customerBySameEmailExists) { $this->privateNote = $privateNote; $this->customerBySameEmailExists = $customerBySameEmailExists; } /** * @return string */ public function getPrivateNote() { return $this->privateNote; } /** * @return bool */ public function getCustomerBySameEmailExists() { return $this->customerBySameEmailExists; } }