FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: AlertHistoryState.php
<?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 * The Application ID of the calling application that submitted an update (PATCH) to the alert. The appId should be extracted from the auth token and not entered manually by the calling application. * * @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 * The Application ID of the calling application that submitted an update (PATCH) to the alert. The appId should be extracted from the auth token and not entered manually by the calling application. * * @param string $val The value of the appId * * @return AlertHistoryState */ public function setAppId($val) { $this->_propDict["appId"] = $val; return $this; } /** * Gets the assignedTo * UPN of user the alert was assigned to (note: alert.assignedTo only stores the last value/UPN). * * @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 * UPN of user the alert was assigned to (note: alert.assignedTo only stores the last value/UPN). * * @param string $val The value of the assignedTo * * @return AlertHistoryState */ public function setAssignedTo($val) { $this->_propDict["assignedTo"] = $val; return $this; } /** * Gets the comments * Comment entered by signed-in user. * * @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 * Comment entered by signed-in user. * * @param string $val The value of the comments * * @return AlertHistoryState */ public function setComments($val) { $this->_propDict["comments"] = $val; return $this; } /** * Gets the feedback * Analyst feedback on the alert in this update. Possible values are: unknown, truePositive, falsePositive, benignPositive. * * @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 * Analyst feedback on the alert in this update. Possible values are: unknown, truePositive, falsePositive, benignPositive. * * @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 * Alert status value (if updated). Possible values are: unknown, newAlert, inProgress, resolved, dismissed. * * @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 * Alert status value (if updated). Possible values are: unknown, newAlert, inProgress, resolved, dismissed. * * @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 * Date and time of the alert update. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z * * @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 * Date and time of the alert update. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z * * @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 * UPN of the signed-in user that updated the alert (taken from the bearer token - if in user/delegated auth mode). * * @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 * UPN of the signed-in user that updated the alert (taken from the bearer token - if in user/delegated auth mode). * * @param string $val The value of the user * * @return AlertHistoryState */ public function setUser($val) { $this->_propDict["user"] = $val; return $this; } }
Save
Back