????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.143.17.164 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 : /usr/local/bin/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; use Office365\Runtime\ResourcePath; /** * A collection of [schedulingGroup](schedulinggroup.md) objects, [shift](shift.md) objects, [timeOffReason](timeoffreason.md) objects, and [timeOff](timeoff.md) objects within a [team](../resources/team.md). */ class Schedule extends ClientObject { /** * @return bool */ public function getEnabled() { if (!$this->isPropertyAvailable("Enabled")) { return null; } return $this->getProperty("Enabled"); } /** * @var bool */ public function setEnabled($value) { $this->setProperty("Enabled", $value, true); } /** * @return string */ public function getTimeZone() { if (!$this->isPropertyAvailable("TimeZone")) { return null; } return $this->getProperty("TimeZone"); } /** * @var string */ public function setTimeZone($value) { $this->setProperty("TimeZone", $value, true); } /** * @return string */ public function getProvisionStatusCode() { if (!$this->isPropertyAvailable("ProvisionStatusCode")) { return null; } return $this->getProperty("ProvisionStatusCode"); } /** * @var string */ public function setProvisionStatusCode($value) { $this->setProperty("ProvisionStatusCode", $value, true); } /** * @return array */ public function getWorkforceIntegrationIds() { if (!$this->isPropertyAvailable("WorkforceIntegrationIds")) { return null; } return $this->getProperty("WorkforceIntegrationIds"); } /** * @var array */ public function setWorkforceIntegrationIds($value) { $this->setProperty("WorkforceIntegrationIds", $value, true); } /** * @return bool */ public function getTimeClockEnabled() { if (!$this->isPropertyAvailable("TimeClockEnabled")) { return null; } return $this->getProperty("TimeClockEnabled"); } /** * @var bool */ public function setTimeClockEnabled($value) { $this->setProperty("TimeClockEnabled", $value, true); } /** * @return bool */ public function getOpenShiftsEnabled() { if (!$this->isPropertyAvailable("OpenShiftsEnabled")) { return null; } return $this->getProperty("OpenShiftsEnabled"); } /** * @var bool */ public function setOpenShiftsEnabled($value) { $this->setProperty("OpenShiftsEnabled", $value, true); } /** * @return bool */ public function getSwapShiftsRequestsEnabled() { if (!$this->isPropertyAvailable("SwapShiftsRequestsEnabled")) { return null; } return $this->getProperty("SwapShiftsRequestsEnabled"); } /** * @var bool */ public function setSwapShiftsRequestsEnabled($value) { $this->setProperty("SwapShiftsRequestsEnabled", $value, true); } /** * @return bool */ public function getOfferShiftRequestsEnabled() { if (!$this->isPropertyAvailable("OfferShiftRequestsEnabled")) { return null; } return $this->getProperty("OfferShiftRequestsEnabled"); } /** * @var bool */ public function setOfferShiftRequestsEnabled($value) { $this->setProperty("OfferShiftRequestsEnabled", $value, true); } /** * @return bool */ public function getTimeOffRequestsEnabled() { if (!$this->isPropertyAvailable("TimeOffRequestsEnabled")) { return null; } return $this->getProperty("TimeOffRequestsEnabled"); } /** * @var bool */ public function setTimeOffRequestsEnabled($value) { $this->setProperty("TimeOffRequestsEnabled", $value, true); } }