setODataType("#microsoft.graph.edgeSearchEngine"); } /** * Gets the edgeSearchEngineType * Allows IT admins to set a predefined default search engine for MDM-Controlled devices. Possible values are: default, bing. * * @return EdgeSearchEngineType|null The edgeSearchEngineType */ public function getEdgeSearchEngineType() { if (array_key_exists("edgeSearchEngineType", $this->_propDict)) { if (is_a($this->_propDict["edgeSearchEngineType"], "\Microsoft\Graph\Model\EdgeSearchEngineType") || is_null($this->_propDict["edgeSearchEngineType"])) { return $this->_propDict["edgeSearchEngineType"]; } else { $this->_propDict["edgeSearchEngineType"] = new EdgeSearchEngineType($this->_propDict["edgeSearchEngineType"]); return $this->_propDict["edgeSearchEngineType"]; } } return null; } /** * Sets the edgeSearchEngineType * Allows IT admins to set a predefined default search engine for MDM-Controlled devices. Possible values are: default, bing. * * @param EdgeSearchEngineType $val The value to assign to the edgeSearchEngineType * * @return EdgeSearchEngine The EdgeSearchEngine */ public function setEdgeSearchEngineType($val) { $this->_propDict["edgeSearchEngineType"] = $val; return $this; } }