FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: SearchHit.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. * * @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. * * @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 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; } }
Save
Back