ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * DeviceConfigurationDeviceStateSummary 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; /** * DeviceConfigurationDeviceStateSummary 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 DeviceConfigurationDeviceStateSummary extends Entity { /** * Gets the compliantDeviceCount * Number of compliant devices * * @return int|null The compliantDeviceCount */ public function getCompliantDeviceCount() { if (array_key_exists("compliantDeviceCount", $this->_propDict)) { return $this->_propDict["compliantDeviceCount"]; } else { return null; } } /** * Sets the compliantDeviceCount * Number of compliant devices * * @param int $val The compliantDeviceCount * * @return DeviceConfigurationDeviceStateSummary */ public function setCompliantDeviceCount($val) { $this->_propDict["compliantDeviceCount"] = intval($val); return $this; } /** * Gets the conflictDeviceCount * Number of conflict devices * * @return int|null The conflictDeviceCount */ public function getConflictDeviceCount() { if (array_key_exists("conflictDeviceCount", $this->_propDict)) { return $this->_propDict["conflictDeviceCount"]; } else { return null; } } /** * Sets the conflictDeviceCount * Number of conflict devices * * @param int $val The conflictDeviceCount * * @return DeviceConfigurationDeviceStateSummary */ public function setConflictDeviceCount($val) { $this->_propDict["conflictDeviceCount"] = intval($val); return $this; } /** * Gets the errorDeviceCount * Number of error devices * * @return int|null The errorDeviceCount */ public function getErrorDeviceCount() { if (array_key_exists("errorDeviceCount", $this->_propDict)) { return $this->_propDict["errorDeviceCount"]; } else { return null; } } /** * Sets the errorDeviceCount * Number of error devices * * @param int $val The errorDeviceCount * * @return DeviceConfigurationDeviceStateSummary */ public function setErrorDeviceCount($val) { $this->_propDict["errorDeviceCount"] = intval($val); return $this; } /** * Gets the nonCompliantDeviceCount * Number of NonCompliant devices * * @return int|null The nonCompliantDeviceCount */ public function getNonCompliantDeviceCount() { if (array_key_exists("nonCompliantDeviceCount", $this->_propDict)) { return $this->_propDict["nonCompliantDeviceCount"]; } else { return null; } } /** * Sets the nonCompliantDeviceCount * Number of NonCompliant devices * * @param int $val The nonCompliantDeviceCount * * @return DeviceConfigurationDeviceStateSummary */ public function setNonCompliantDeviceCount($val) { $this->_propDict["nonCompliantDeviceCount"] = intval($val); return $this; } /** * Gets the notApplicableDeviceCount * Number of not applicable devices * * @return int|null The notApplicableDeviceCount */ public function getNotApplicableDeviceCount() { if (array_key_exists("notApplicableDeviceCount", $this->_propDict)) { return $this->_propDict["notApplicableDeviceCount"]; } else { return null; } } /** * Sets the notApplicableDeviceCount * Number of not applicable devices * * @param int $val The notApplicableDeviceCount * * @return DeviceConfigurationDeviceStateSummary */ public function setNotApplicableDeviceCount($val) { $this->_propDict["notApplicableDeviceCount"] = intval($val); return $this; } /** * Gets the remediatedDeviceCount * Number of remediated devices * * @return int|null The remediatedDeviceCount */ public function getRemediatedDeviceCount() { if (array_key_exists("remediatedDeviceCount", $this->_propDict)) { return $this->_propDict["remediatedDeviceCount"]; } else { return null; } } /** * Sets the remediatedDeviceCount * Number of remediated devices * * @param int $val The remediatedDeviceCount * * @return DeviceConfigurationDeviceStateSummary */ public function setRemediatedDeviceCount($val) { $this->_propDict["remediatedDeviceCount"] = intval($val); return $this; } /** * Gets the unknownDeviceCount * Number of unknown devices * * @return int|null The unknownDeviceCount */ public function getUnknownDeviceCount() { if (array_key_exists("unknownDeviceCount", $this->_propDict)) { return $this->_propDict["unknownDeviceCount"]; } else { return null; } } /** * Sets the unknownDeviceCount * Number of unknown devices * * @param int $val The unknownDeviceCount * * @return DeviceConfigurationDeviceStateSummary */ public function setUnknownDeviceCount($val) { $this->_propDict["unknownDeviceCount"] = intval($val); return $this; } }
cải xoăn