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

83 lines
2.4 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* DowngradeJustification 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;
/**
* DowngradeJustification 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 DowngradeJustification extends Entity
{
/**
* Gets the isDowngradeJustified
* Indicates whether the downgrade is or is not justified.
*
* @return bool|null The isDowngradeJustified
*/
public function getIsDowngradeJustified()
{
if (array_key_exists("isDowngradeJustified", $this->_propDict)) {
return $this->_propDict["isDowngradeJustified"];
} else {
return null;
}
}
/**
* Sets the isDowngradeJustified
* Indicates whether the downgrade is or is not justified.
*
* @param bool $val The value of the isDowngradeJustified
*
* @return DowngradeJustification
*/
public function setIsDowngradeJustified($val)
{
$this->_propDict["isDowngradeJustified"] = $val;
return $this;
}
/**
* Gets the justificationMessage
* Message that indicates why a downgrade is justified. The message will appear in administrative logs.
*
* @return string|null The justificationMessage
*/
public function getJustificationMessage()
{
if (array_key_exists("justificationMessage", $this->_propDict)) {
return $this->_propDict["justificationMessage"];
} else {
return null;
}
}
/**
* Sets the justificationMessage
* Message that indicates why a downgrade is justified. The message will appear in administrative logs.
*
* @param string $val The value of the justificationMessage
*
* @return DowngradeJustification
*/
public function setJustificationMessage($val)
{
$this->_propDict["justificationMessage"] = $val;
return $this;
}
}