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.
*
* SubjectRightsRequestDetail 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;
/**
* SubjectRightsRequestDetail 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 SubjectRightsRequestDetail extends Entity
{
/**
* Gets the excludedItemCount
* Count of items that are excluded from the request.
*
* @return int|null The excludedItemCount
*/
public function getExcludedItemCount()
{
if (array_key_exists("excludedItemCount", $this->_propDict)) {
return $this->_propDict["excludedItemCount"];
} else {
return null;
}
}
/**
* Sets the excludedItemCount
* Count of items that are excluded from the request.
*
* @param int $val The value of the excludedItemCount
*
* @return SubjectRightsRequestDetail
*/
public function setExcludedItemCount($val)
{
$this->_propDict["excludedItemCount"] = $val;
return $this;
}
/**
* Gets the insightCounts
* Count of items per insight.
*
* @return KeyValuePair|null The insightCounts
*/
public function getInsightCounts()
{
if (array_key_exists("insightCounts", $this->_propDict)) {
if (is_a($this->_propDict["insightCounts"], "\Microsoft\Graph\Model\KeyValuePair") || is_null($this->_propDict["insightCounts"])) {
return $this->_propDict["insightCounts"];
} else {
$this->_propDict["insightCounts"] = new KeyValuePair($this->_propDict["insightCounts"]);
return $this->_propDict["insightCounts"];
}
}
return null;
}
/**
* Sets the insightCounts
* Count of items per insight.
*
* @param KeyValuePair $val The value to assign to the insightCounts
*
* @return SubjectRightsRequestDetail The SubjectRightsRequestDetail
*/
public function setInsightCounts($val)
{
$this->_propDict["insightCounts"] = $val;
return $this;
}
/**
* Gets the itemCount
* Count of items found.
*
* @return int|null The itemCount
*/
public function getItemCount()
{
if (array_key_exists("itemCount", $this->_propDict)) {
return $this->_propDict["itemCount"];
} else {
return null;
}
}
/**
* Sets the itemCount
* Count of items found.
*
* @param int $val The value of the itemCount
*
* @return SubjectRightsRequestDetail
*/
public function setItemCount($val)
{
$this->_propDict["itemCount"] = $val;
return $this;
}
/**
* Gets the itemNeedReview
* Count of item that need review.
*
* @return int|null The itemNeedReview
*/
public function getItemNeedReview()
{
if (array_key_exists("itemNeedReview", $this->_propDict)) {
return $this->_propDict["itemNeedReview"];
} else {
return null;
}
}
/**
* Sets the itemNeedReview
* Count of item that need review.
*
* @param int $val The value of the itemNeedReview
*
* @return SubjectRightsRequestDetail
*/
public function setItemNeedReview($val)
{
$this->_propDict["itemNeedReview"] = $val;
return $this;
}
/**
* Gets the productItemCounts
* Count of items per product, such as Exchange, SharePoint, OneDrive, and Teams.
*
* @return KeyValuePair|null The productItemCounts
*/
public function getProductItemCounts()
{
if (array_key_exists("productItemCounts", $this->_propDict)) {
if (is_a($this->_propDict["productItemCounts"], "\Microsoft\Graph\Model\KeyValuePair") || is_null($this->_propDict["productItemCounts"])) {
return $this->_propDict["productItemCounts"];
} else {
$this->_propDict["productItemCounts"] = new KeyValuePair($this->_propDict["productItemCounts"]);
return $this->_propDict["productItemCounts"];
}
}
return null;
}
/**
* Sets the productItemCounts
* Count of items per product, such as Exchange, SharePoint, OneDrive, and Teams.
*
* @param KeyValuePair $val The value to assign to the productItemCounts
*
* @return SubjectRightsRequestDetail The SubjectRightsRequestDetail
*/
public function setProductItemCounts($val)
{
$this->_propDict["productItemCounts"] = $val;
return $this;
}
/**
* Gets the signedOffItemCount
* Count of items signed off by the administrator.
*
* @return int|null The signedOffItemCount
*/
public function getSignedOffItemCount()
{
if (array_key_exists("signedOffItemCount", $this->_propDict)) {
return $this->_propDict["signedOffItemCount"];
} else {
return null;
}
}
/**
* Sets the signedOffItemCount
* Count of items signed off by the administrator.
*
* @param int $val The value of the signedOffItemCount
*
* @return SubjectRightsRequestDetail
*/
public function setSignedOffItemCount($val)
{
$this->_propDict["signedOffItemCount"] = $val;
return $this;
}
/**
* Gets the totalItemSize
* Total item size in bytes.
*
* @return int|null The totalItemSize
*/
public function getTotalItemSize()
{
if (array_key_exists("totalItemSize", $this->_propDict)) {
return $this->_propDict["totalItemSize"];
} else {
return null;
}
}
/**
* Sets the totalItemSize
* Total item size in bytes.
*
* @param int $val The value of the totalItemSize
*
* @return SubjectRightsRequestDetail
*/
public function setTotalItemSize($val)
{
$this->_propDict["totalItemSize"] = $val;
return $this;
}
}