????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.145.50.27 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/icad.astacus.se/sharepoint/vendor/vgrem/php-spo/src/SharePoint/ |
Upload File : |
<?php /** * This file was generated by phpSPO model generator 2019-11-17T14:25:04+00:00 16.0.19506.12022 */ namespace Office365\SharePoint; /** * Specifies * a base type that represents a user or group that can be * assigned permissions to control security. */ class Principal extends BaseEntity { /** * @return PrincipalType */ public function getPrincipalType() { if ($this->isPropertyAvailable('PrincipalType')) { return $this->getProperty("PrincipalType"); } return null; } /** * Specifies * the member * identifier for the user or group.Its value * MUST be equal to or greater than 1. Its value MUST be equal to or less than * 2147483647. * @return integer */ public function getId() { if (!$this->isPropertyAvailable("Id")) { return null; } return $this->getProperty("Id"); } /** * Specifies * the member * identifier for the user or group.Its value * MUST be equal to or greater than 1. Its value MUST be equal to or less than * 2147483647. * @var integer */ public function setId($value) { $this->setProperty("Id", $value, true); } /** * Specifies * whether the principal is hidden * in the user interface (UI).<77> * @return bool */ public function getIsHiddenInUI() { if (!$this->isPropertyAvailable("IsHiddenInUI")) { return null; } return $this->getProperty("IsHiddenInUI"); } /** * Specifies * whether the principal is hidden * in the user interface (UI).<77> * @var bool */ public function setIsHiddenInUI($value) { $this->setProperty("IsHiddenInUI", $value, true); } /** * If this object * (1) represents a user, LoginName specifies the login * name of the user. For a group, it specifies * the name of the group. * @return string */ public function getLoginName() { if (!$this->isPropertyAvailable("LoginName")) { return null; } return $this->getProperty("LoginName"); } /** * If this object * (1) represents a user, LoginName specifies the login * name of the user. For a group, it specifies * the name of the group. * @var string */ public function setLoginName($value) { $this->setProperty("LoginName", $value, true); } /** * Specifies * the name of the principal.It MUST * NOT be NULL. Its length MUST be equal to or less than 255. * @return string */ public function getTitle() { if (!$this->isPropertyAvailable("Title")) { return null; } return $this->getProperty("Title"); } /** * Specifies * the name of the principal.It MUST * NOT be NULL. Its length MUST be equal to or less than 255. * @var string */ public function setTitle($value) { $this->setProperty("Title", $value, true); } /** * Specifies * the type of principal * represented by this object (1). * @var integer */ public function setPrincipalType($value) { $this->setProperty("PrincipalType", $value, true); } }