![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-user/Api/Data/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\User\Api\Data; /** * Admin user interface. * * @api * @since 100.0.2 */ interface UserInterface { /** * Get ID. * * @return int */ public function getId(); /** * Set ID. * * @param int $id * @return $this */ public function setId($id); /** * Get first name. * * @return string */ public function getFirstName(); /** * Set first name. * * @param string $firstName * @return $this */ public function setFirstName($firstName); /** * Get last name. * * @return string */ public function getLastName(); /** * Set last name. * * @param string $lastName * @return $this */ public function setLastName($lastName); /** * Get email. * * @return string */ public function getEmail(); /** * Set email. * * @param string $email * @return $this */ public function setEmail($email); /** * Get user name. * * @return string */ public function getUserName(); /** * Set user name. * * @param string $userName * @return $this */ public function setUserName($userName); /** * Get password or password hash. * * @return string */ public function getPassword(); /** * Set password or password hash. * * @param string $password * @return $this */ public function setPassword($password); /** * Get user record creation date. * * @return string */ public function getCreated(); /** * Set user record creation date. * * @param string $created * @return $this */ public function setCreated($created); /** * Get user record modification date. * * @return string */ public function getModified(); /** * Set user record modification date. * * @param string $modified * @return $this */ public function setModified($modified); /** * Check if user is active. * * @return int */ public function getIsActive(); /** * Set if user is active. * * @param int $isActive * @return $this */ public function setIsActive($isActive); /** * Get user interface locale. * * @return string */ public function getInterfaceLocale(); /** * Set user interface locale. * * @param string $interfaceLocale * @return $this */ public function setInterfaceLocale($interfaceLocale); }