ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * DeviceComplianceSettingState 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; /** * DeviceComplianceSettingState 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 DeviceComplianceSettingState extends Entity { /** * Gets the complianceGracePeriodExpirationDateTime * The DateTime when device compliance grace period expires * * @return \DateTime|null The complianceGracePeriodExpirationDateTime */ public function getComplianceGracePeriodExpirationDateTime() { if (array_key_exists("complianceGracePeriodExpirationDateTime", $this->_propDict)) { if (is_a($this->_propDict["complianceGracePeriodExpirationDateTime"], "\DateTime") || is_null($this->_propDict["complianceGracePeriodExpirationDateTime"])) { return $this->_propDict["complianceGracePeriodExpirationDateTime"]; } else { $this->_propDict["complianceGracePeriodExpirationDateTime"] = new \DateTime($this->_propDict["complianceGracePeriodExpirationDateTime"]); return $this->_propDict["complianceGracePeriodExpirationDateTime"]; } } return null; } /** * Sets the complianceGracePeriodExpirationDateTime * The DateTime when device compliance grace period expires * * @param \DateTime $val The complianceGracePeriodExpirationDateTime * * @return DeviceComplianceSettingState */ public function setComplianceGracePeriodExpirationDateTime($val) { $this->_propDict["complianceGracePeriodExpirationDateTime"] = $val; return $this; } /** * Gets the deviceId * The Device Id that is being reported * * @return string|null The deviceId */ public function getDeviceId() { if (array_key_exists("deviceId", $this->_propDict)) { return $this->_propDict["deviceId"]; } else { return null; } } /** * Sets the deviceId * The Device Id that is being reported * * @param string $val The deviceId * * @return DeviceComplianceSettingState */ public function setDeviceId($val) { $this->_propDict["deviceId"] = $val; return $this; } /** * Gets the deviceModel * The device model that is being reported * * @return string|null The deviceModel */ public function getDeviceModel() { if (array_key_exists("deviceModel", $this->_propDict)) { return $this->_propDict["deviceModel"]; } else { return null; } } /** * Sets the deviceModel * The device model that is being reported * * @param string $val The deviceModel * * @return DeviceComplianceSettingState */ public function setDeviceModel($val) { $this->_propDict["deviceModel"] = $val; return $this; } /** * Gets the deviceName * The Device Name that is being reported * * @return string|null The deviceName */ public function getDeviceName() { if (array_key_exists("deviceName", $this->_propDict)) { return $this->_propDict["deviceName"]; } else { return null; } } /** * Sets the deviceName * The Device Name that is being reported * * @param string $val The deviceName * * @return DeviceComplianceSettingState */ public function setDeviceName($val) { $this->_propDict["deviceName"] = $val; return $this; } /** * Gets the setting * The setting class name and property name. * * @return string|null The setting */ public function getSetting() { if (array_key_exists("setting", $this->_propDict)) { return $this->_propDict["setting"]; } else { return null; } } /** * Sets the setting * The setting class name and property name. * * @param string $val The setting * * @return DeviceComplianceSettingState */ public function setSetting($val) { $this->_propDict["setting"] = $val; return $this; } /** * Gets the settingName * The Setting Name that is being reported * * @return string|null The settingName */ public function getSettingName() { if (array_key_exists("settingName", $this->_propDict)) { return $this->_propDict["settingName"]; } else { return null; } } /** * Sets the settingName * The Setting Name that is being reported * * @param string $val The settingName * * @return DeviceComplianceSettingState */ public function setSettingName($val) { $this->_propDict["settingName"] = $val; return $this; } /** * Gets the state * The compliance state of the setting. Possible values are: unknown, notApplicable, compliant, remediated, nonCompliant, error, conflict, notAssigned. * * @return ComplianceStatus|null The state */ public function getState() { if (array_key_exists("state", $this->_propDict)) { if (is_a($this->_propDict["state"], "\Microsoft\Graph\Model\ComplianceStatus") || is_null($this->_propDict["state"])) { return $this->_propDict["state"]; } else { $this->_propDict["state"] = new ComplianceStatus($this->_propDict["state"]); return $this->_propDict["state"]; } } return null; } /** * Sets the state * The compliance state of the setting. Possible values are: unknown, notApplicable, compliant, remediated, nonCompliant, error, conflict, notAssigned. * * @param ComplianceStatus $val The state * * @return DeviceComplianceSettingState */ public function setState($val) { $this->_propDict["state"] = $val; return $this; } /** * Gets the userEmail * The User email address that is being reported * * @return string|null The userEmail */ public function getUserEmail() { if (array_key_exists("userEmail", $this->_propDict)) { return $this->_propDict["userEmail"]; } else { return null; } } /** * Sets the userEmail * The User email address that is being reported * * @param string $val The userEmail * * @return DeviceComplianceSettingState */ public function setUserEmail($val) { $this->_propDict["userEmail"] = $val; return $this; } /** * Gets the userId * The user Id that is being reported * * @return string|null The userId */ public function getUserId() { if (array_key_exists("userId", $this->_propDict)) { return $this->_propDict["userId"]; } else { return null; } } /** * Sets the userId * The user Id that is being reported * * @param string $val The userId * * @return DeviceComplianceSettingState */ public function setUserId($val) { $this->_propDict["userId"] = $val; return $this; } /** * Gets the userName * The User Name that is being reported * * @return string|null The userName */ public function getUserName() { if (array_key_exists("userName", $this->_propDict)) { return $this->_propDict["userName"]; } else { return null; } } /** * Sets the userName * The User Name that is being reported * * @param string $val The userName * * @return DeviceComplianceSettingState */ public function setUserName($val) { $this->_propDict["userName"] = $val; return $this; } /** * Gets the userPrincipalName * The User PrincipalName that is being reported * * @return string|null The userPrincipalName */ public function getUserPrincipalName() { if (array_key_exists("userPrincipalName", $this->_propDict)) { return $this->_propDict["userPrincipalName"]; } else { return null; } } /** * Sets the userPrincipalName * The User PrincipalName that is being reported * * @param string $val The userPrincipalName * * @return DeviceComplianceSettingState */ public function setUserPrincipalName($val) { $this->_propDict["userPrincipalName"] = $val; return $this; } }
cải xoăn