1
0
Fork 0
m365-php/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/ExternalConnectors/Model/SearchSettings.php

60 lines
2.2 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* SearchSettings File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Beta\Microsoft\Graph\ExternalConnectors\Model;
/**
* SearchSettings class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class SearchSettings extends \Beta\Microsoft\Graph\Model\Entity
{
/**
* Gets the searchResultTemplates
* Enables the developer to define the appearance of the content and configure conditions that dictate when the template should be displayed. Maximum of 2 search result templates per connection.
*
* @return DisplayTemplate|null The searchResultTemplates
*/
public function getSearchResultTemplates()
{
if (array_key_exists("searchResultTemplates", $this->_propDict)) {
if (is_a($this->_propDict["searchResultTemplates"], "\Beta\Microsoft\Graph\ExternalConnectors\Model\DisplayTemplate") || is_null($this->_propDict["searchResultTemplates"])) {
return $this->_propDict["searchResultTemplates"];
} else {
$this->_propDict["searchResultTemplates"] = new DisplayTemplate($this->_propDict["searchResultTemplates"]);
return $this->_propDict["searchResultTemplates"];
}
}
return null;
}
/**
* Sets the searchResultTemplates
* Enables the developer to define the appearance of the content and configure conditions that dictate when the template should be displayed. Maximum of 2 search result templates per connection.
*
* @param DisplayTemplate $val The value to assign to the searchResultTemplates
*
* @return SearchSettings The SearchSettings
*/
public function setSearchResultTemplates($val)
{
$this->_propDict["searchResultTemplates"] = $val;
return $this;
}
}