_propDict)) { return $this->_propDict["appConfigKey"]; } else { return null; } } /** * Sets the appConfigKey * app configuration key. * * @param string $val The value of the appConfigKey * * @return AppConfigurationSettingItem */ public function setAppConfigKey($val) { $this->_propDict["appConfigKey"] = $val; return $this; } /** * Gets the appConfigKeyType * app configuration key type. Possible values are: stringType, integerType, realType, booleanType, tokenType. * * @return MdmAppConfigKeyType|null The appConfigKeyType */ public function getAppConfigKeyType() { if (array_key_exists("appConfigKeyType", $this->_propDict)) { if (is_a($this->_propDict["appConfigKeyType"], "\Microsoft\Graph\Model\MdmAppConfigKeyType") || is_null($this->_propDict["appConfigKeyType"])) { return $this->_propDict["appConfigKeyType"]; } else { $this->_propDict["appConfigKeyType"] = new MdmAppConfigKeyType($this->_propDict["appConfigKeyType"]); return $this->_propDict["appConfigKeyType"]; } } return null; } /** * Sets the appConfigKeyType * app configuration key type. Possible values are: stringType, integerType, realType, booleanType, tokenType. * * @param MdmAppConfigKeyType $val The value to assign to the appConfigKeyType * * @return AppConfigurationSettingItem The AppConfigurationSettingItem */ public function setAppConfigKeyType($val) { $this->_propDict["appConfigKeyType"] = $val; return $this; } /** * Gets the appConfigKeyValue * app configuration key value. * * @return string|null The appConfigKeyValue */ public function getAppConfigKeyValue() { if (array_key_exists("appConfigKeyValue", $this->_propDict)) { return $this->_propDict["appConfigKeyValue"]; } else { return null; } } /** * Sets the appConfigKeyValue * app configuration key value. * * @param string $val The value of the appConfigKeyValue * * @return AppConfigurationSettingItem */ public function setAppConfigKeyValue($val) { $this->_propDict["appConfigKeyValue"] = $val; return $this; } }