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.
*
* SharepointIds 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;
/**
* SharepointIds 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 SharepointIds extends Entity
{
/**
* Gets the listId
* The unique identifier (guid) for the item's list in SharePoint.
*
* @return string|null The listId
*/
public function getListId()
{
if (array_key_exists("listId", $this->_propDict)) {
return $this->_propDict["listId"];
} else {
return null;
}
}
/**
* Sets the listId
* The unique identifier (guid) for the item's list in SharePoint.
*
* @param string $val The value of the listId
*
* @return SharepointIds
*/
public function setListId($val)
{
$this->_propDict["listId"] = $val;
return $this;
}
/**
* Gets the listItemId
* An integer identifier for the item within the containing list.
*
* @return string|null The listItemId
*/
public function getListItemId()
{
if (array_key_exists("listItemId", $this->_propDict)) {
return $this->_propDict["listItemId"];
} else {
return null;
}
}
/**
* Sets the listItemId
* An integer identifier for the item within the containing list.
*
* @param string $val The value of the listItemId
*
* @return SharepointIds
*/
public function setListItemId($val)
{
$this->_propDict["listItemId"] = $val;
return $this;
}
/**
* Gets the listItemUniqueId
* The unique identifier (guid) for the item within OneDrive for Business or a SharePoint site.
*
* @return string|null The listItemUniqueId
*/
public function getListItemUniqueId()
{
if (array_key_exists("listItemUniqueId", $this->_propDict)) {
return $this->_propDict["listItemUniqueId"];
} else {
return null;
}
}
/**
* Sets the listItemUniqueId
* The unique identifier (guid) for the item within OneDrive for Business or a SharePoint site.
*
* @param string $val The value of the listItemUniqueId
*
* @return SharepointIds
*/
public function setListItemUniqueId($val)
{
$this->_propDict["listItemUniqueId"] = $val;
return $this;
}
/**
* Gets the siteId
* The unique identifier (guid) for the item's site collection (SPSite).
*
* @return string|null The siteId
*/
public function getSiteId()
{
if (array_key_exists("siteId", $this->_propDict)) {
return $this->_propDict["siteId"];
} else {
return null;
}
}
/**
* Sets the siteId
* The unique identifier (guid) for the item's site collection (SPSite).
*
* @param string $val The value of the siteId
*
* @return SharepointIds
*/
public function setSiteId($val)
{
$this->_propDict["siteId"] = $val;
return $this;
}
/**
* Gets the siteUrl
* The SharePoint URL for the site that contains the item.
*
* @return string|null The siteUrl
*/
public function getSiteUrl()
{
if (array_key_exists("siteUrl", $this->_propDict)) {
return $this->_propDict["siteUrl"];
} else {
return null;
}
}
/**
* Sets the siteUrl
* The SharePoint URL for the site that contains the item.
*
* @param string $val The value of the siteUrl
*
* @return SharepointIds
*/
public function setSiteUrl($val)
{
$this->_propDict["siteUrl"] = $val;
return $this;
}
/**
* Gets the tenantId
* The unique identifier (guid) for the tenancy.
*
* @return string|null The tenantId
*/
public function getTenantId()
{
if (array_key_exists("tenantId", $this->_propDict)) {
return $this->_propDict["tenantId"];
} else {
return null;
}
}
/**
* Sets the tenantId
* The unique identifier (guid) for the tenancy.
*
* @param string $val The value of the tenantId
*
* @return SharepointIds
*/
public function setTenantId($val)
{
$this->_propDict["tenantId"] = $val;
return $this;
}
/**
* Gets the webId
* The unique identifier (guid) for the item's site (SPWeb).
*
* @return string|null The webId
*/
public function getWebId()
{
if (array_key_exists("webId", $this->_propDict)) {
return $this->_propDict["webId"];
} else {
return null;
}
}
/**
* Sets the webId
* The unique identifier (guid) for the item's site (SPWeb).
*
* @param string $val The value of the webId
*
* @return SharepointIds
*/
public function setWebId($val)
{
$this->_propDict["webId"] = $val;
return $this;
}
}