1
0
Fork 0
m365-php/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteSettings.php

83 lines
2.1 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* SiteSettings 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 Beta\Microsoft\Graph\Model;
/**
* SiteSettings 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 SiteSettings extends Entity
{
/**
* Gets the languageTag
* The language tag for the language used on this site.
*
* @return string|null The languageTag
*/
public function getLanguageTag()
{
if (array_key_exists("languageTag", $this->_propDict)) {
return $this->_propDict["languageTag"];
} else {
return null;
}
}
/**
* Sets the languageTag
* The language tag for the language used on this site.
*
* @param string $val The value of the languageTag
*
* @return SiteSettings
*/
public function setLanguageTag($val)
{
$this->_propDict["languageTag"] = $val;
return $this;
}
/**
* Gets the timeZone
* Indicates the time offset for the time zone of the site from Coordinated Universal Time (UTC).
*
* @return string|null The timeZone
*/
public function getTimeZone()
{
if (array_key_exists("timeZone", $this->_propDict)) {
return $this->_propDict["timeZone"];
} else {
return null;
}
}
/**
* Sets the timeZone
* Indicates the time offset for the time zone of the site from Coordinated Universal Time (UTC).
*
* @param string $val The value of the timeZone
*
* @return SiteSettings
*/
public function setTimeZone($val)
{
$this->_propDict["timeZone"] = $val;
return $this;
}
}