144 lines
2.8 KiB
PHP
Executable File
144 lines
2.8 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Copyright © Magento, Inc. All rights reserved.
|
|
* See COPYING.txt for license details.
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Magento\TestModuleExtensionAttributes\Api\Model;
|
|
|
|
/**
|
|
* Class Customer
|
|
*
|
|
*/
|
|
class FakeCustomer extends \Magento\Framework\Api\AbstractExtensibleObject implements
|
|
\Magento\TestModuleExtensionAttributes\Api\Data\FakeCustomerInterface
|
|
{
|
|
/**
|
|
* Get customer id
|
|
*
|
|
* @return int|null
|
|
*/
|
|
public function getId()
|
|
{
|
|
return $this->_get(self::ID);
|
|
}
|
|
|
|
/**
|
|
* Get email address
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getEmail()
|
|
{
|
|
return $this->_get(self::EMAIL);
|
|
}
|
|
|
|
/**
|
|
* Get first name
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getFirstname()
|
|
{
|
|
return $this->_get(self::FIRSTNAME);
|
|
}
|
|
|
|
/**
|
|
* Get last name
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getLastname()
|
|
{
|
|
return $this->_get(self::LASTNAME);
|
|
}
|
|
|
|
/**
|
|
* Get prefix
|
|
*
|
|
* @return string|null
|
|
*/
|
|
public function getPrefix()
|
|
{
|
|
return $this->_get(self::PREFIX);
|
|
}
|
|
|
|
/**
|
|
* Set customer id
|
|
*
|
|
* @param int $id
|
|
* @return $this
|
|
*/
|
|
public function setId($id)
|
|
{
|
|
return $this->setData(self::ID, $id);
|
|
}
|
|
|
|
/**
|
|
* Set email address
|
|
*
|
|
* @param string $email
|
|
* @return $this
|
|
*/
|
|
public function setEmail($email)
|
|
{
|
|
return $this->setData(self::EMAIL, $email);
|
|
}
|
|
|
|
/**
|
|
* Set first name
|
|
*
|
|
* @param string $firstname
|
|
* @return $this
|
|
*/
|
|
public function setFirstname($firstname)
|
|
{
|
|
return $this->setData(self::FIRSTNAME, $firstname);
|
|
}
|
|
|
|
/**
|
|
* Set last name
|
|
*
|
|
* @param string $lastname
|
|
* @return string
|
|
*/
|
|
public function setLastname($lastname)
|
|
{
|
|
return $this->setData(self::LASTNAME, $lastname);
|
|
}
|
|
|
|
/**
|
|
* Set prefix
|
|
*
|
|
* @param string $prefix
|
|
* @return $this
|
|
*/
|
|
public function setPrefix($prefix)
|
|
{
|
|
return $this->setData(self::PREFIX, $prefix);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* @return \Magento\TestModuleExtensionAttributes\Api\Data\FakeCustomerExtensionInterface|null
|
|
*/
|
|
public function getExtensionAttributes()
|
|
{
|
|
return $this->_getExtensionAttributes();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* @param \Magento\TestModuleExtensionAttributes\Api\Data\FakeCustomerExtensionInterface $extensionAttributes
|
|
* @return $this
|
|
*/
|
|
public function setExtensionAttributes(
|
|
\Magento\TestModuleExtensionAttributes\Api\Data\FakeCustomerExtensionInterface $extensionAttributes
|
|
) {
|
|
return $this->_setExtensionAttributes($extensionAttributes);
|
|
}
|
|
}
|