Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/hopeinstoughton_www/vendor/microsoft/microsoft-graph/src/Model/ |
Upload File : |
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* SearchHit 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 Microsoft\Graph\Model;
/**
* SearchHit 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 SearchHit extends Entity
{
/**
* Gets the contentSource
* The name of the content source that the externalItem is part of.
*
* @return string|null The contentSource
*/
public function getContentSource()
{
if (array_key_exists("contentSource", $this->_propDict)) {
return $this->_propDict["contentSource"];
} else {
return null;
}
}
/**
* Sets the contentSource
* The name of the content source that the externalItem is part of.
*
* @param string $val The value of the contentSource
*
* @return SearchHit
*/
public function setContentSource($val)
{
$this->_propDict["contentSource"] = $val;
return $this;
}
/**
* Gets the hitId
* The internal identifier for the item. The format of the identifier varies based on the entity type. For details, see hitId format.
*
* @return string|null The hitId
*/
public function getHitId()
{
if (array_key_exists("hitId", $this->_propDict)) {
return $this->_propDict["hitId"];
} else {
return null;
}
}
/**
* Sets the hitId
* The internal identifier for the item. The format of the identifier varies based on the entity type. For details, see hitId format.
*
* @param string $val The value of the hitId
*
* @return SearchHit
*/
public function setHitId($val)
{
$this->_propDict["hitId"] = $val;
return $this;
}
/**
* Gets the isCollapsed
* Indicates whether the current result is collapsed when the collapseProperties property in the searchRequest is used.
*
* @return bool|null The isCollapsed
*/
public function getIsCollapsed()
{
if (array_key_exists("isCollapsed", $this->_propDict)) {
return $this->_propDict["isCollapsed"];
} else {
return null;
}
}
/**
* Sets the isCollapsed
* Indicates whether the current result is collapsed when the collapseProperties property in the searchRequest is used.
*
* @param bool $val The value of the isCollapsed
*
* @return SearchHit
*/
public function setIsCollapsed($val)
{
$this->_propDict["isCollapsed"] = $val;
return $this;
}
/**
* Gets the rank
* The rank or the order of the result.
*
* @return int|null The rank
*/
public function getRank()
{
if (array_key_exists("rank", $this->_propDict)) {
return $this->_propDict["rank"];
} else {
return null;
}
}
/**
* Sets the rank
* The rank or the order of the result.
*
* @param int $val The value of the rank
*
* @return SearchHit
*/
public function setRank($val)
{
$this->_propDict["rank"] = $val;
return $this;
}
/**
* Gets the resultTemplateId
* ID of the result template used to render the search result. This ID must map to a display layout in the resultTemplates dictionary that is also included in the searchResponse.
*
* @return string|null The resultTemplateId
*/
public function getResultTemplateId()
{
if (array_key_exists("resultTemplateId", $this->_propDict)) {
return $this->_propDict["resultTemplateId"];
} else {
return null;
}
}
/**
* Sets the resultTemplateId
* ID of the result template used to render the search result. This ID must map to a display layout in the resultTemplates dictionary that is also included in the searchResponse.
*
* @param string $val The value of the resultTemplateId
*
* @return SearchHit
*/
public function setResultTemplateId($val)
{
$this->_propDict["resultTemplateId"] = $val;
return $this;
}
/**
* Gets the summary
* A summary of the result, if a summary is available.
*
* @return string|null The summary
*/
public function getSummary()
{
if (array_key_exists("summary", $this->_propDict)) {
return $this->_propDict["summary"];
} else {
return null;
}
}
/**
* Sets the summary
* A summary of the result, if a summary is available.
*
* @param string $val The value of the summary
*
* @return SearchHit
*/
public function setSummary($val)
{
$this->_propDict["summary"] = $val;
return $this;
}
/**
* Gets the resource
*
* @return Entity|null The resource
*/
public function getResource()
{
if (array_key_exists("resource", $this->_propDict)) {
if (is_a($this->_propDict["resource"], "\Microsoft\Graph\Model\Entity") || is_null($this->_propDict["resource"])) {
return $this->_propDict["resource"];
} else {
$this->_propDict["resource"] = new Entity($this->_propDict["resource"]);
return $this->_propDict["resource"];
}
}
return null;
}
/**
* Sets the resource
*
* @param Entity $val The value to assign to the resource
*
* @return SearchHit The SearchHit
*/
public function setResource($val)
{
$this->_propDict["resource"] = $val;
return $this;
}
}