????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.116.62.169 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; /** * "The **call** resource is created when there is an incoming call for the application or the application creates a new outgoing call via a `POST` on `app/calls`." */ class Call extends ClientObject { /** * @return string */ public function getSubject() { if (!$this->isPropertyAvailable("Subject")) { return null; } return $this->getProperty("Subject"); } /** * @var string */ public function setSubject($value) { $this->setProperty("Subject", $value, true); } /** * @return string */ public function getCallbackUri() { if (!$this->isPropertyAvailable("CallbackUri")) { return null; } return $this->getProperty("CallbackUri"); } /** * @var string */ public function setCallbackUri($value) { $this->setProperty("CallbackUri", $value, true); } /** * @return string */ public function getTenantId() { if (!$this->isPropertyAvailable("TenantId")) { return null; } return $this->getProperty("TenantId"); } /** * @var string */ public function setTenantId($value) { $this->setProperty("TenantId", $value, true); } /** * @return string */ public function getMyParticipantId() { if (!$this->isPropertyAvailable("MyParticipantId")) { return null; } return $this->getProperty("MyParticipantId"); } /** * @var string */ public function setMyParticipantId($value) { $this->setProperty("MyParticipantId", $value, true); } /** * @return CallMediaState */ public function getMediaState() { if (!$this->isPropertyAvailable("MediaState")) { return null; } return $this->getProperty("MediaState"); } /** * @var CallMediaState */ public function setMediaState($value) { $this->setProperty("MediaState", $value, true); } /** * @return ResultInfo */ public function getResultInfo() { if (!$this->isPropertyAvailable("ResultInfo")) { return null; } return $this->getProperty("ResultInfo"); } /** * @var ResultInfo */ public function setResultInfo($value) { $this->setProperty("ResultInfo", $value, true); } /** * @return ParticipantInfo */ public function getSource() { if (!$this->isPropertyAvailable("Source")) { return null; } return $this->getProperty("Source"); } /** * @var ParticipantInfo */ public function setSource($value) { $this->setProperty("Source", $value, true); } /** * @return MediaConfig */ public function getMediaConfig() { if (!$this->isPropertyAvailable("MediaConfig")) { return null; } return $this->getProperty("MediaConfig"); } /** * @var MediaConfig */ public function setMediaConfig($value) { $this->setProperty("MediaConfig", $value, true); } /** * @return ChatInfo */ public function getChatInfo() { if (!$this->isPropertyAvailable("ChatInfo")) { return null; } return $this->getProperty("ChatInfo"); } /** * @var ChatInfo */ public function setChatInfo($value) { $this->setProperty("ChatInfo", $value, true); } /** * @return CallOptions */ public function getCallOptions() { if (!$this->isPropertyAvailable("CallOptions")) { return null; } return $this->getProperty("CallOptions"); } /** * @var CallOptions */ public function setCallOptions($value) { $this->setProperty("CallOptions", $value, true); } /** * @return MeetingInfo */ public function getMeetingInfo() { if (!$this->isPropertyAvailable("MeetingInfo")) { return null; } return $this->getProperty("MeetingInfo"); } /** * @var MeetingInfo */ public function setMeetingInfo($value) { $this->setProperty("MeetingInfo", $value, true); } /** * @return ToneInfo */ public function getToneInfo() { if (!$this->isPropertyAvailable("ToneInfo")) { return null; } return $this->getProperty("ToneInfo"); } /** * @var ToneInfo */ public function setToneInfo($value) { $this->setProperty("ToneInfo", $value, true); } /** * @return string */ public function getCallChainId() { if (!$this->isPropertyAvailable("CallChainId")) { return null; } return $this->getProperty("CallChainId"); } /** * @var string */ public function setCallChainId($value) { $this->setProperty("CallChainId", $value, true); } }