_propDict)) { return $this->_propDict["maximumCount"]; } else { return null; } } /** * Sets the maximumCount * Maximum number of setting group count in the collection * * @param int $val The maximumCount * * @return DeviceManagementConfigurationSettingGroupCollectionDefinition */ public function setMaximumCount($val) { $this->_propDict["maximumCount"] = intval($val); return $this; } /** * Gets the minimumCount * Minimum number of setting group count in the collection * * @return int|null The minimumCount */ public function getMinimumCount() { if (array_key_exists("minimumCount", $this->_propDict)) { return $this->_propDict["minimumCount"]; } else { return null; } } /** * Sets the minimumCount * Minimum number of setting group count in the collection * * @param int $val The minimumCount * * @return DeviceManagementConfigurationSettingGroupCollectionDefinition */ public function setMinimumCount($val) { $this->_propDict["minimumCount"] = intval($val); return $this; } }