_propDict)) { return $this->_propDict["deviceComplianceCheckinThresholdDays"]; } else { return null; } } /** * Sets the deviceComplianceCheckinThresholdDays * The number of days a device is allowed to go without checking in to remain compliant. * * @param int $val The value of the deviceComplianceCheckinThresholdDays * * @return DeviceManagementSettings */ public function setDeviceComplianceCheckinThresholdDays($val) { $this->_propDict["deviceComplianceCheckinThresholdDays"] = $val; return $this; } /** * Gets the isScheduledActionEnabled * Is feature enabled or not for scheduled action for rule. * * @return bool|null The isScheduledActionEnabled */ public function getIsScheduledActionEnabled() { if (array_key_exists("isScheduledActionEnabled", $this->_propDict)) { return $this->_propDict["isScheduledActionEnabled"]; } else { return null; } } /** * Sets the isScheduledActionEnabled * Is feature enabled or not for scheduled action for rule. * * @param bool $val The value of the isScheduledActionEnabled * * @return DeviceManagementSettings */ public function setIsScheduledActionEnabled($val) { $this->_propDict["isScheduledActionEnabled"] = $val; return $this; } /** * Gets the secureByDefault * Device should be noncompliant when there is no compliance policy targeted when this is true * * @return bool|null The secureByDefault */ public function getSecureByDefault() { if (array_key_exists("secureByDefault", $this->_propDict)) { return $this->_propDict["secureByDefault"]; } else { return null; } } /** * Sets the secureByDefault * Device should be noncompliant when there is no compliance policy targeted when this is true * * @param bool $val The value of the secureByDefault * * @return DeviceManagementSettings */ public function setSecureByDefault($val) { $this->_propDict["secureByDefault"] = $val; return $this; } }