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.
*
* AlertHistoryState 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;
/**
* AlertHistoryState 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 AlertHistoryState extends Entity
{
/**
* Gets the appId
*
* @return string|null The appId
*/
public function getAppId()
{
if (array_key_exists("appId", $this->_propDict)) {
return $this->_propDict["appId"];
} else {
return null;
}
}
/**
* Sets the appId
*
* @param string $val The value of the appId
*
* @return AlertHistoryState
*/
public function setAppId($val)
{
$this->_propDict["appId"] = $val;
return $this;
}
/**
* Gets the assignedTo
*
* @return string|null The assignedTo
*/
public function getAssignedTo()
{
if (array_key_exists("assignedTo", $this->_propDict)) {
return $this->_propDict["assignedTo"];
} else {
return null;
}
}
/**
* Sets the assignedTo
*
* @param string $val The value of the assignedTo
*
* @return AlertHistoryState
*/
public function setAssignedTo($val)
{
$this->_propDict["assignedTo"] = $val;
return $this;
}
/**
* Gets the comments
*
* @return string|null The comments
*/
public function getComments()
{
if (array_key_exists("comments", $this->_propDict)) {
return $this->_propDict["comments"];
} else {
return null;
}
}
/**
* Sets the comments
*
* @param string $val The value of the comments
*
* @return AlertHistoryState
*/
public function setComments($val)
{
$this->_propDict["comments"] = $val;
return $this;
}
/**
* Gets the feedback
*
* @return AlertFeedback|null The feedback
*/
public function getFeedback()
{
if (array_key_exists("feedback", $this->_propDict)) {
if (is_a($this->_propDict["feedback"], "\Microsoft\Graph\Model\AlertFeedback") || is_null($this->_propDict["feedback"])) {
return $this->_propDict["feedback"];
} else {
$this->_propDict["feedback"] = new AlertFeedback($this->_propDict["feedback"]);
return $this->_propDict["feedback"];
}
}
return null;
}
/**
* Sets the feedback
*
* @param AlertFeedback $val The value to assign to the feedback
*
* @return AlertHistoryState The AlertHistoryState
*/
public function setFeedback($val)
{
$this->_propDict["feedback"] = $val;
return $this;
}
/**
* Gets the status
*
* @return AlertStatus|null The status
*/
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
if (is_a($this->_propDict["status"], "\Microsoft\Graph\Model\AlertStatus") || is_null($this->_propDict["status"])) {
return $this->_propDict["status"];
} else {
$this->_propDict["status"] = new AlertStatus($this->_propDict["status"]);
return $this->_propDict["status"];
}
}
return null;
}
/**
* Sets the status
*
* @param AlertStatus $val The value to assign to the status
*
* @return AlertHistoryState The AlertHistoryState
*/
public function setStatus($val)
{
$this->_propDict["status"] = $val;
return $this;
}
/**
* Gets the updatedDateTime
*
* @return \DateTime|null The updatedDateTime
*/
public function getUpdatedDateTime()
{
if (array_key_exists("updatedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["updatedDateTime"], "\DateTime") || is_null($this->_propDict["updatedDateTime"])) {
return $this->_propDict["updatedDateTime"];
} else {
$this->_propDict["updatedDateTime"] = new \DateTime($this->_propDict["updatedDateTime"]);
return $this->_propDict["updatedDateTime"];
}
}
return null;
}
/**
* Sets the updatedDateTime
*
* @param \DateTime $val The value to assign to the updatedDateTime
*
* @return AlertHistoryState The AlertHistoryState
*/
public function setUpdatedDateTime($val)
{
$this->_propDict["updatedDateTime"] = $val;
return $this;
}
/**
* Gets the user
*
* @return string|null The user
*/
public function getUser()
{
if (array_key_exists("user", $this->_propDict)) {
return $this->_propDict["user"];
} else {
return null;
}
}
/**
* Sets the user
*
* @param string $val The value of the user
*
* @return AlertHistoryState
*/
public function setUser($val)
{
$this->_propDict["user"] = $val;
return $this;
}
}