ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * DeviceCompliancePolicySettingStateSummary 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; /** * DeviceCompliancePolicySettingStateSummary 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 DeviceCompliancePolicySettingStateSummary 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 DeviceCompliancePolicySettingStateSummary */ 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 DeviceCompliancePolicySettingStateSummary */ 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 DeviceCompliancePolicySettingStateSummary */ 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 DeviceCompliancePolicySettingStateSummary */ 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 DeviceCompliancePolicySettingStateSummary */ public function setNotApplicableDeviceCount($val) { $this->_propDict["notApplicableDeviceCount"] = intval($val); return $this; } /** * Gets the platformType * Setting platform. Possible values are: android, iOS, macOS, windowsPhone81, windows81AndLater, windows10AndLater, androidWorkProfile, all. * * @return PolicyPlatformType|null The platformType */ public function getPlatformType() { if (array_key_exists("platformType", $this->_propDict)) { if (is_a($this->_propDict["platformType"], "\Microsoft\Graph\Model\PolicyPlatformType") || is_null($this->_propDict["platformType"])) { return $this->_propDict["platformType"]; } else { $this->_propDict["platformType"] = new PolicyPlatformType($this->_propDict["platformType"]); return $this->_propDict["platformType"]; } } return null; } /** * Sets the platformType * Setting platform. Possible values are: android, iOS, macOS, windowsPhone81, windows81AndLater, windows10AndLater, androidWorkProfile, all. * * @param PolicyPlatformType $val The platformType * * @return DeviceCompliancePolicySettingStateSummary */ public function setPlatformType($val) { $this->_propDict["platformType"] = $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 DeviceCompliancePolicySettingStateSummary */ public function setRemediatedDeviceCount($val) { $this->_propDict["remediatedDeviceCount"] = intval($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 DeviceCompliancePolicySettingStateSummary */ public function setSetting($val) { $this->_propDict["setting"] = $val; return $this; } /** * Gets the settingName * Name of the setting. * * @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 * Name of the setting. * * @param string $val The settingName * * @return DeviceCompliancePolicySettingStateSummary */ public function setSettingName($val) { $this->_propDict["settingName"] = $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 DeviceCompliancePolicySettingStateSummary */ public function setUnknownDeviceCount($val) { $this->_propDict["unknownDeviceCount"] = intval($val); return $this; } /** * Gets the deviceComplianceSettingStates * Not yet documented * * @return array|null The deviceComplianceSettingStates */ public function getDeviceComplianceSettingStates() { if (array_key_exists("deviceComplianceSettingStates", $this->_propDict)) { return $this->_propDict["deviceComplianceSettingStates"]; } else { return null; } } /** * Sets the deviceComplianceSettingStates * Not yet documented * * @param DeviceComplianceSettingState[] $val The deviceComplianceSettingStates * * @return DeviceCompliancePolicySettingStateSummary */ public function setDeviceComplianceSettingStates($val) { $this->_propDict["deviceComplianceSettingStates"] = $val; return $this; } }
cải xoăn