????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.117.73.33 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-29T07:19:37+00:00 */ namespace Office365\Graph; use Office365\Runtime\ClientObject; /** * Represents an individual chat message within a [channel](./channel.md) or (in beta) [chat](/graph/api/resources/chat?view=graph-rest-beta). The chat message can be a root chat message or part of a reply thread that is defined by the **replyToId** property in the chat message. */ class ChatMessage extends ClientObject { /** * Read-only. Id of the parent chat message or root chat message of the thread. (Only applies to chat messages in channels not chats) * @return string */ public function getReplyToId() { if (!$this->isPropertyAvailable("ReplyToId")) { return null; } return $this->getProperty("ReplyToId"); } /** * Read-only. Id of the parent chat message or root chat message of the thread. (Only applies to chat messages in channels not chats) * @var string */ public function setReplyToId($value) { $this->setProperty("ReplyToId", $value, true); } /** * Read-only. Version number of the chat message. * @return string */ public function getEtag() { if (!$this->isPropertyAvailable("Etag")) { return null; } return $this->getProperty("Etag"); } /** * Read-only. Version number of the chat message. * @var string */ public function setEtag($value) { $this->setProperty("Etag", $value, true); } /** * The subject of the chat message, in plaintext. * @return string */ public function getSubject() { if (!$this->isPropertyAvailable("Subject")) { return null; } return $this->getProperty("Subject"); } /** * The subject of the chat message, in plaintext. * @var string */ public function setSubject($value) { $this->setProperty("Subject", $value, true); } /** * Summary text of the chat message that could be used for push notifications and summary views or fall back views. Only applies to channel chat messages, not chat messages in a chat. * @return string */ public function getSummary() { if (!$this->isPropertyAvailable("Summary")) { return null; } return $this->getProperty("Summary"); } /** * Summary text of the chat message that could be used for push notifications and summary views or fall back views. Only applies to channel chat messages, not chat messages in a chat. * @var string */ public function setSummary($value) { $this->setProperty("Summary", $value, true); } /** * Locale of the chat message set by the client. * @return string */ public function getLocale() { if (!$this->isPropertyAvailable("Locale")) { return null; } return $this->getProperty("Locale"); } /** * Locale of the chat message set by the client. * @var string */ public function setLocale($value) { $this->setProperty("Locale", $value, true); } /** * @return string */ public function getWebUrl() { if (!$this->isPropertyAvailable("WebUrl")) { return null; } return $this->getProperty("WebUrl"); } /** * @var string */ public function setWebUrl($value) { $this->setProperty("WebUrl", $value, true); } }