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.
*
* NotificationMessageTemplate 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;
/**
* NotificationMessageTemplate 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 NotificationMessageTemplate extends Entity
{
/**
* Gets the brandingOptions
* The Message Template Branding Options. Branding is defined in the Intune Admin Console. Possible values are: none, includeCompanyLogo, includeCompanyName, includeContactInformation, includeCompanyPortalLink, includeDeviceDetails, unknownFutureValue.
*
* @return NotificationTemplateBrandingOptions|null The brandingOptions
*/
public function getBrandingOptions()
{
if (array_key_exists("brandingOptions", $this->_propDict)) {
if (is_a($this->_propDict["brandingOptions"], "\Microsoft\Graph\Model\NotificationTemplateBrandingOptions") || is_null($this->_propDict["brandingOptions"])) {
return $this->_propDict["brandingOptions"];
} else {
$this->_propDict["brandingOptions"] = new NotificationTemplateBrandingOptions($this->_propDict["brandingOptions"]);
return $this->_propDict["brandingOptions"];
}
}
return null;
}
/**
* Sets the brandingOptions
* The Message Template Branding Options. Branding is defined in the Intune Admin Console. Possible values are: none, includeCompanyLogo, includeCompanyName, includeContactInformation, includeCompanyPortalLink, includeDeviceDetails, unknownFutureValue.
*
* @param NotificationTemplateBrandingOptions $val The brandingOptions
*
* @return NotificationMessageTemplate
*/
public function setBrandingOptions($val)
{
$this->_propDict["brandingOptions"] = $val;
return $this;
}
/**
* Gets the defaultLocale
* The default locale to fallback onto when the requested locale is not available.
*
* @return string|null The defaultLocale
*/
public function getDefaultLocale()
{
if (array_key_exists("defaultLocale", $this->_propDict)) {
return $this->_propDict["defaultLocale"];
} else {
return null;
}
}
/**
* Sets the defaultLocale
* The default locale to fallback onto when the requested locale is not available.
*
* @param string $val The defaultLocale
*
* @return NotificationMessageTemplate
*/
public function setDefaultLocale($val)
{
$this->_propDict["defaultLocale"] = $val;
return $this;
}
/**
* Gets the displayName
* Display name for the Notification Message Template.
*
* @return string|null The displayName
*/
public function getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
}
/**
* Sets the displayName
* Display name for the Notification Message Template.
*
* @param string $val The displayName
*
* @return NotificationMessageTemplate
*/
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
}
/**
* Gets the lastModifiedDateTime
* DateTime the object was last modified.
*
* @return \DateTime|null The lastModifiedDateTime
*/
public function getLastModifiedDateTime()
{
if (array_key_exists("lastModifiedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) {
return $this->_propDict["lastModifiedDateTime"];
} else {
$this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]);
return $this->_propDict["lastModifiedDateTime"];
}
}
return null;
}
/**
* Sets the lastModifiedDateTime
* DateTime the object was last modified.
*
* @param \DateTime $val The lastModifiedDateTime
*
* @return NotificationMessageTemplate
*/
public function setLastModifiedDateTime($val)
{
$this->_propDict["lastModifiedDateTime"] = $val;
return $this;
}
/**
* Gets the roleScopeTagIds
* List of Scope Tags for this Entity instance.
*
* @return array|null The roleScopeTagIds
*/
public function getRoleScopeTagIds()
{
if (array_key_exists("roleScopeTagIds", $this->_propDict)) {
return $this->_propDict["roleScopeTagIds"];
} else {
return null;
}
}
/**
* Sets the roleScopeTagIds
* List of Scope Tags for this Entity instance.
*
* @param string[] $val The roleScopeTagIds
*
* @return NotificationMessageTemplate
*/
public function setRoleScopeTagIds($val)
{
$this->_propDict["roleScopeTagIds"] = $val;
return $this;
}
/**
* Gets the localizedNotificationMessages
* The list of localized messages for this Notification Message Template.
*
* @return array|null The localizedNotificationMessages
*/
public function getLocalizedNotificationMessages()
{
if (array_key_exists("localizedNotificationMessages", $this->_propDict)) {
return $this->_propDict["localizedNotificationMessages"];
} else {
return null;
}
}
/**
* Sets the localizedNotificationMessages
* The list of localized messages for this Notification Message Template.
*
* @param LocalizedNotificationMessage[] $val The localizedNotificationMessages
*
* @return NotificationMessageTemplate
*/
public function setLocalizedNotificationMessages($val)
{
$this->_propDict["localizedNotificationMessages"] = $val;
return $this;
}
}