1
0
Fork 0
m365-php/vendor/microsoft/microsoft-graph/src/Model/SearchHit.php

198 lines
5.1 KiB
PHP

<?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 which 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 which 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 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 for rendering the search result. This ID must map to a display layout in the resultTemplates dictionary, included in the searchresponse as well.
*
* @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 for rendering the search result. This ID must map to a display layout in the resultTemplates dictionary, included in the searchresponse as well.
*
* @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;
}
}