_propDict)) { if (is_a($this->_propDict["channel"], "\Microsoft\Graph\Model\MicrosoftEdgeChannel") || is_null($this->_propDict["channel"])) { return $this->_propDict["channel"]; } else { $this->_propDict["channel"] = new MicrosoftEdgeChannel($this->_propDict["channel"]); return $this->_propDict["channel"]; } } return null; } /** * Sets the channel * The channel to install on target devices. The possible values are dev, beta, and stable. By default, this property is set to dev. Possible values are: dev, beta, stable, unknownFutureValue. * * @param MicrosoftEdgeChannel $val The channel * * @return WindowsMicrosoftEdgeApp */ public function setChannel($val) { $this->_propDict["channel"] = $val; return $this; } /** * Gets the displayLanguageLocale * The language locale to use when the Edge app displays text to the user. * * @return string|null The displayLanguageLocale */ public function getDisplayLanguageLocale() { if (array_key_exists("displayLanguageLocale", $this->_propDict)) { return $this->_propDict["displayLanguageLocale"]; } else { return null; } } /** * Sets the displayLanguageLocale * The language locale to use when the Edge app displays text to the user. * * @param string $val The displayLanguageLocale * * @return WindowsMicrosoftEdgeApp */ public function setDisplayLanguageLocale($val) { $this->_propDict["displayLanguageLocale"] = $val; return $this; } }