????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.117.172.251 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:12:31+00:00 */ namespace Office365\Graph; use Office365\Runtime\ClientObject; use Office365\Runtime\ResourcePath; /** * "A team in Microsoft Teams is a collection of channels. " */ class Team extends ClientObject { /** * A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select **Get link to team**. This URL should be treated as an opaque blob, and not parsed. * @return string */ public function getWebUrl() { if (!$this->isPropertyAvailable("WebUrl")) { return null; } return $this->getProperty("WebUrl"); } /** * A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select **Get link to team**. This URL should be treated as an opaque blob, and not parsed. * @var string */ public function setWebUrl($value) { $this->setProperty("WebUrl", $value, true); } /** * Whether this team is in read-only mode. * @return bool */ public function getIsArchived() { if (!$this->isPropertyAvailable("IsArchived")) { return null; } return $this->getProperty("IsArchived"); } /** * Whether this team is in read-only mode. * @var bool */ public function setIsArchived($value) { $this->setProperty("IsArchived", $value, true); } /** * Settings to configure whether members can perform certain actions, for example, create channels and add bots, in the team. * @return TeamMemberSettings */ public function getMemberSettings() { if (!$this->isPropertyAvailable("MemberSettings")) { return null; } return $this->getProperty("MemberSettings"); } /** * Settings to configure whether members can perform certain actions, for example, create channels and add bots, in the team. * @var TeamMemberSettings */ public function setMemberSettings($value) { $this->setProperty("MemberSettings", $value, true); } /** * Settings to configure whether guests can create, update, or delete channels in the team. * @return TeamGuestSettings */ public function getGuestSettings() { if (!$this->isPropertyAvailable("GuestSettings")) { return null; } return $this->getProperty("GuestSettings"); } /** * Settings to configure whether guests can create, update, or delete channels in the team. * @var TeamGuestSettings */ public function setGuestSettings($value) { $this->setProperty("GuestSettings", $value, true); } /** * Settings to configure messaging and mentions in the team. * @return TeamMessagingSettings */ public function getMessagingSettings() { if (!$this->isPropertyAvailable("MessagingSettings")) { return null; } return $this->getProperty("MessagingSettings"); } /** * Settings to configure messaging and mentions in the team. * @var TeamMessagingSettings */ public function setMessagingSettings($value) { $this->setProperty("MessagingSettings", $value, true); } /** * Settings to configure use of Giphy, memes, and stickers in the team. * @return TeamFunSettings */ public function getFunSettings() { if (!$this->isPropertyAvailable("FunSettings")) { return null; } return $this->getProperty("FunSettings"); } /** * Settings to configure use of Giphy, memes, and stickers in the team. * @var TeamFunSettings */ public function setFunSettings($value) { $this->setProperty("FunSettings", $value, true); } }