setODataType("#microsoft.graph.edgeSearchEngineCustom"); } /** * Gets the edgeSearchEngineOpenSearchXmlUrl * Points to a https link containing the OpenSearch xml file that contains, at minimum, the short name and the URL to the search Engine. * * @return string|null The edgeSearchEngineOpenSearchXmlUrl */ public function getEdgeSearchEngineOpenSearchXmlUrl() { if (array_key_exists("edgeSearchEngineOpenSearchXmlUrl", $this->_propDict)) { return $this->_propDict["edgeSearchEngineOpenSearchXmlUrl"]; } else { return null; } } /** * Sets the edgeSearchEngineOpenSearchXmlUrl * Points to a https link containing the OpenSearch xml file that contains, at minimum, the short name and the URL to the search Engine. * * @param string $val The value of the edgeSearchEngineOpenSearchXmlUrl * * @return EdgeSearchEngineCustom */ public function setEdgeSearchEngineOpenSearchXmlUrl($val) { $this->_propDict["edgeSearchEngineOpenSearchXmlUrl"] = $val; return $this; } }