????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.14.135.79 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/Graph/ |
Upload File : |
<?php /** * Generated by phpSPO model generator 2020-05-24T22:08:35+00:00 */ namespace Office365\Graph; use Office365\Runtime\ClientObject; use Office365\Runtime\ResourcePath; /** * "Represents an organizational contact" */ class OrgContact extends ClientObject { /** * @return string */ public function getCompanyName() { if (!$this->isPropertyAvailable("CompanyName")) { return null; } return $this->getProperty("CompanyName"); } /** * @var string */ public function setCompanyName($value) { $this->setProperty("CompanyName", $value, true); } /** * @return string */ public function getDepartment() { if (!$this->isPropertyAvailable("Department")) { return null; } return $this->getProperty("Department"); } /** * @var string */ public function setDepartment($value) { $this->setProperty("Department", $value, true); } /** * @return string */ public function getDisplayName() { if (!$this->isPropertyAvailable("DisplayName")) { return null; } return $this->getProperty("DisplayName"); } /** * @var string */ public function setDisplayName($value) { $this->setProperty("DisplayName", $value, true); } /** * @return string */ public function getGivenName() { if (!$this->isPropertyAvailable("GivenName")) { return null; } return $this->getProperty("GivenName"); } /** * @var string */ public function setGivenName($value) { $this->setProperty("GivenName", $value, true); } /** * @return string */ public function getJobTitle() { if (!$this->isPropertyAvailable("JobTitle")) { return null; } return $this->getProperty("JobTitle"); } /** * @var string */ public function setJobTitle($value) { $this->setProperty("JobTitle", $value, true); } /** * The SMTP address for the contact, for example, "jeff@contoso.onmicrosoft.com". * @return string */ public function getMail() { if (!$this->isPropertyAvailable("Mail")) { return null; } return $this->getProperty("Mail"); } /** * The SMTP address for the contact, for example, "jeff@contoso.onmicrosoft.com". * @var string */ public function setMail($value) { $this->setProperty("Mail", $value, true); } /** * @return string */ public function getMailNickname() { if (!$this->isPropertyAvailable("MailNickname")) { return null; } return $this->getProperty("MailNickname"); } /** * @var string */ public function setMailNickname($value) { $this->setProperty("MailNickname", $value, true); } /** * **true** if this object is synced from an on-premises directory; **false** if this object was originally synced from an on-premises directory but is no longer synced and now mastered in Exchange; **null** if this object has never been synced from an on-premises directory (default). * @return bool */ public function getOnPremisesSyncEnabled() { if (!$this->isPropertyAvailable("OnPremisesSyncEnabled")) { return null; } return $this->getProperty("OnPremisesSyncEnabled"); } /** * **true** if this object is synced from an on-premises directory; **false** if this object was originally synced from an on-premises directory but is no longer synced and now mastered in Exchange; **null** if this object has never been synced from an on-premises directory (default). * @var bool */ public function setOnPremisesSyncEnabled($value) { $this->setProperty("OnPremisesSyncEnabled", $value, true); } /** * @return array */ public function getProxyAddresses() { if (!$this->isPropertyAvailable("ProxyAddresses")) { return null; } return $this->getProperty("ProxyAddresses"); } /** * @var array */ public function setProxyAddresses($value) { $this->setProperty("ProxyAddresses", $value, true); } /** * @return string */ public function getSurname() { if (!$this->isPropertyAvailable("Surname")) { return null; } return $this->getProperty("Surname"); } /** * @var string */ public function setSurname($value) { $this->setProperty("Surname", $value, true); } /** * The user or contact that is this contact's manager. Read-only. * @return DirectoryObject */ public function getManager() { if (!$this->isPropertyAvailable("Manager")) { $this->setProperty("Manager", new DirectoryObject($this->getContext(), new ResourcePath("Manager", $this->getResourcePath()))); } return $this->getProperty("Manager"); } }