????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.19.28.64 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-26T22:10:14+00:00 */ namespace Office365\Graph; use Office365\Runtime\ClientObject; use Office365\Runtime\ResourcePath; /** * "A rule that applies to messages in the Inbox of a user." */ class MessageRule extends ClientObject { /** * @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 integer */ public function getSequence() { if (!$this->isPropertyAvailable("Sequence")) { return null; } return $this->getProperty("Sequence"); } /** * @var integer */ public function setSequence($value) { $this->setProperty("Sequence", $value, true); } /** * @return bool */ public function getIsEnabled() { if (!$this->isPropertyAvailable("IsEnabled")) { return null; } return $this->getProperty("IsEnabled"); } /** * @var bool */ public function setIsEnabled($value) { $this->setProperty("IsEnabled", $value, true); } /** * @return bool */ public function getHasError() { if (!$this->isPropertyAvailable("HasError")) { return null; } return $this->getProperty("HasError"); } /** * @var bool */ public function setHasError($value) { $this->setProperty("HasError", $value, true); } /** * @return bool */ public function getIsReadOnly() { if (!$this->isPropertyAvailable("IsReadOnly")) { return null; } return $this->getProperty("IsReadOnly"); } /** * @var bool */ public function setIsReadOnly($value) { $this->setProperty("IsReadOnly", $value, true); } /** * @return MessageRulePredicates */ public function getConditions() { if (!$this->isPropertyAvailable("Conditions")) { return null; } return $this->getProperty("Conditions"); } /** * @var MessageRulePredicates */ public function setConditions($value) { $this->setProperty("Conditions", $value, true); } /** * @return MessageRuleActions */ public function getActions() { if (!$this->isPropertyAvailable("Actions")) { return null; } return $this->getProperty("Actions"); } /** * @var MessageRuleActions */ public function setActions($value) { $this->setProperty("Actions", $value, true); } /** * @return MessageRulePredicates */ public function getExceptions() { if (!$this->isPropertyAvailable("Exceptions")) { return null; } return $this->getProperty("Exceptions"); } /** * @var MessageRulePredicates */ public function setExceptions($value) { $this->setProperty("Exceptions", $value, true); } }