_propDict)) { if (is_a($this->_propDict["encodedSettingXml"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["encodedSettingXml"])) { return $this->_propDict["encodedSettingXml"]; } else { $this->_propDict["encodedSettingXml"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["encodedSettingXml"]); return $this->_propDict["encodedSettingXml"]; } } return null; } /** * Sets the encodedSettingXml * mdm app configuration Base64 binary. * * @param \GuzzleHttp\Psr7\Stream $val The encodedSettingXml * * @return IosMobileAppConfiguration */ public function setEncodedSettingXml($val) { $this->_propDict["encodedSettingXml"] = $val; return $this; } /** * Gets the settings * app configuration setting items. * * @return array|null The settings */ public function getSettings() { if (array_key_exists("settings", $this->_propDict)) { return $this->_propDict["settings"]; } else { return null; } } /** * Sets the settings * app configuration setting items. * * @param AppConfigurationSettingItem[] $val The settings * * @return IosMobileAppConfiguration */ public function setSettings($val) { $this->_propDict["settings"] = $val; return $this; } }