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.
*
* GraphList 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;
/**
* GraphList 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 GraphList extends BaseItem
{
/**
* Gets the displayName
* The displayable title of the list.
*
* @return string|null The displayName
*/
public function getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
}
/**
* Sets the displayName
* The displayable title of the list.
*
* @param string $val The displayName
*
* @return GraphList
*/
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
}
/**
* Gets the list
* Provides additional details about the list.
*
* @return ListInfo|null The list
*/
public function getList()
{
if (array_key_exists("list", $this->_propDict)) {
if (is_a($this->_propDict["list"], "\Microsoft\Graph\Model\ListInfo") || is_null($this->_propDict["list"])) {
return $this->_propDict["list"];
} else {
$this->_propDict["list"] = new ListInfo($this->_propDict["list"]);
return $this->_propDict["list"];
}
}
return null;
}
/**
* Sets the list
* Provides additional details about the list.
*
* @param ListInfo $val The list
*
* @return GraphList
*/
public function setList($val)
{
$this->_propDict["list"] = $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 GraphList
*/
public function setSharepointIds($val)
{
$this->_propDict["sharepointIds"] = $val;
return $this;
}
/**
* Gets the system
* If present, indicates that this is a system-managed list. Read-only.
*
* @return SystemFacet|null The system
*/
public function getSystem()
{
if (array_key_exists("system", $this->_propDict)) {
if (is_a($this->_propDict["system"], "\Microsoft\Graph\Model\SystemFacet") || is_null($this->_propDict["system"])) {
return $this->_propDict["system"];
} else {
$this->_propDict["system"] = new SystemFacet($this->_propDict["system"]);
return $this->_propDict["system"];
}
}
return null;
}
/**
* Sets the system
* If present, indicates that this is a system-managed list. Read-only.
*
* @param SystemFacet $val The system
*
* @return GraphList
*/
public function setSystem($val)
{
$this->_propDict["system"] = $val;
return $this;
}
/**
* Gets the columns
* The collection of field definitions for this list.
*
* @return array|null The columns
*/
public function getColumns()
{
if (array_key_exists("columns", $this->_propDict)) {
return $this->_propDict["columns"];
} else {
return null;
}
}
/**
* Sets the columns
* The collection of field definitions for this list.
*
* @param ColumnDefinition[] $val The columns
*
* @return GraphList
*/
public function setColumns($val)
{
$this->_propDict["columns"] = $val;
return $this;
}
/**
* Gets the contentTypes
* The collection of content types present in this list.
*
* @return array|null The contentTypes
*/
public function getContentTypes()
{
if (array_key_exists("contentTypes", $this->_propDict)) {
return $this->_propDict["contentTypes"];
} else {
return null;
}
}
/**
* Sets the contentTypes
* The collection of content types present in this list.
*
* @param ContentType[] $val The contentTypes
*
* @return GraphList
*/
public function setContentTypes($val)
{
$this->_propDict["contentTypes"] = $val;
return $this;
}
/**
* Gets the drive
* Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].
*
* @return Drive|null The drive
*/
public function getDrive()
{
if (array_key_exists("drive", $this->_propDict)) {
if (is_a($this->_propDict["drive"], "\Microsoft\Graph\Model\Drive") || is_null($this->_propDict["drive"])) {
return $this->_propDict["drive"];
} else {
$this->_propDict["drive"] = new Drive($this->_propDict["drive"]);
return $this->_propDict["drive"];
}
}
return null;
}
/**
* Sets the drive
* Only present on document libraries. Allows access to the list as a [drive][] resource with [driveItems][driveItem].
*
* @param Drive $val The drive
*
* @return GraphList
*/
public function setDrive($val)
{
$this->_propDict["drive"] = $val;
return $this;
}
/**
* Gets the items
* All items contained in the list.
*
* @return array|null The items
*/
public function getItems()
{
if (array_key_exists("items", $this->_propDict)) {
return $this->_propDict["items"];
} else {
return null;
}
}
/**
* Sets the items
* All items contained in the list.
*
* @param ListItem[] $val The items
*
* @return GraphList
*/
public function setItems($val)
{
$this->_propDict["items"] = $val;
return $this;
}
/**
* Gets the operations
* The collection of long-running operations on the list.
*
* @return array|null The operations
*/
public function getOperations()
{
if (array_key_exists("operations", $this->_propDict)) {
return $this->_propDict["operations"];
} else {
return null;
}
}
/**
* Sets the operations
* The collection of long-running operations on the list.
*
* @param RichLongRunningOperation[] $val The operations
*
* @return GraphList
*/
public function setOperations($val)
{
$this->_propDict["operations"] = $val;
return $this;
}
/**
* Gets the subscriptions
* The set of subscriptions on the list.
*
* @return array|null The subscriptions
*/
public function getSubscriptions()
{
if (array_key_exists("subscriptions", $this->_propDict)) {
return $this->_propDict["subscriptions"];
} else {
return null;
}
}
/**
* Sets the subscriptions
* The set of subscriptions on the list.
*
* @param Subscription[] $val The subscriptions
*
* @return GraphList
*/
public function setSubscriptions($val)
{
$this->_propDict["subscriptions"] = $val;
return $this;
}
}