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.
*
* ItemActivityStat 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;
/**
* ItemActivityStat 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 ItemActivityStat extends Entity
{
/**
* Gets the access
* Statistics about the access actions in this interval. Read-only.
*
* @return ItemActionStat|null The access
*/
public function getAccess()
{
if (array_key_exists("access", $this->_propDict)) {
if (is_a($this->_propDict["access"], "\Microsoft\Graph\Model\ItemActionStat") || is_null($this->_propDict["access"])) {
return $this->_propDict["access"];
} else {
$this->_propDict["access"] = new ItemActionStat($this->_propDict["access"]);
return $this->_propDict["access"];
}
}
return null;
}
/**
* Sets the access
* Statistics about the access actions in this interval. Read-only.
*
* @param ItemActionStat $val The access
*
* @return ItemActivityStat
*/
public function setAccess($val)
{
$this->_propDict["access"] = $val;
return $this;
}
/**
* Gets the create
* Statistics about the create actions in this interval. Read-only.
*
* @return ItemActionStat|null The create
*/
public function getCreate()
{
if (array_key_exists("create", $this->_propDict)) {
if (is_a($this->_propDict["create"], "\Microsoft\Graph\Model\ItemActionStat") || is_null($this->_propDict["create"])) {
return $this->_propDict["create"];
} else {
$this->_propDict["create"] = new ItemActionStat($this->_propDict["create"]);
return $this->_propDict["create"];
}
}
return null;
}
/**
* Sets the create
* Statistics about the create actions in this interval. Read-only.
*
* @param ItemActionStat $val The create
*
* @return ItemActivityStat
*/
public function setCreate($val)
{
$this->_propDict["create"] = $val;
return $this;
}
/**
* Gets the delete
* Statistics about the delete actions in this interval. Read-only.
*
* @return ItemActionStat|null The delete
*/
public function getDelete()
{
if (array_key_exists("delete", $this->_propDict)) {
if (is_a($this->_propDict["delete"], "\Microsoft\Graph\Model\ItemActionStat") || is_null($this->_propDict["delete"])) {
return $this->_propDict["delete"];
} else {
$this->_propDict["delete"] = new ItemActionStat($this->_propDict["delete"]);
return $this->_propDict["delete"];
}
}
return null;
}
/**
* Sets the delete
* Statistics about the delete actions in this interval. Read-only.
*
* @param ItemActionStat $val The delete
*
* @return ItemActivityStat
*/
public function setDelete($val)
{
$this->_propDict["delete"] = $val;
return $this;
}
/**
* Gets the edit
* Statistics about the edit actions in this interval. Read-only.
*
* @return ItemActionStat|null The edit
*/
public function getEdit()
{
if (array_key_exists("edit", $this->_propDict)) {
if (is_a($this->_propDict["edit"], "\Microsoft\Graph\Model\ItemActionStat") || is_null($this->_propDict["edit"])) {
return $this->_propDict["edit"];
} else {
$this->_propDict["edit"] = new ItemActionStat($this->_propDict["edit"]);
return $this->_propDict["edit"];
}
}
return null;
}
/**
* Sets the edit
* Statistics about the edit actions in this interval. Read-only.
*
* @param ItemActionStat $val The edit
*
* @return ItemActivityStat
*/
public function setEdit($val)
{
$this->_propDict["edit"] = $val;
return $this;
}
/**
* Gets the endDateTime
* When the interval ends. Read-only.
*
* @return \DateTime|null The endDateTime
*/
public function getEndDateTime()
{
if (array_key_exists("endDateTime", $this->_propDict)) {
if (is_a($this->_propDict["endDateTime"], "\DateTime") || is_null($this->_propDict["endDateTime"])) {
return $this->_propDict["endDateTime"];
} else {
$this->_propDict["endDateTime"] = new \DateTime($this->_propDict["endDateTime"]);
return $this->_propDict["endDateTime"];
}
}
return null;
}
/**
* Sets the endDateTime
* When the interval ends. Read-only.
*
* @param \DateTime $val The endDateTime
*
* @return ItemActivityStat
*/
public function setEndDateTime($val)
{
$this->_propDict["endDateTime"] = $val;
return $this;
}
/**
* Gets the incompleteData
* Indicates that the statistics in this interval are based on incomplete data. Read-only.
*
* @return IncompleteData|null The incompleteData
*/
public function getIncompleteData()
{
if (array_key_exists("incompleteData", $this->_propDict)) {
if (is_a($this->_propDict["incompleteData"], "\Microsoft\Graph\Model\IncompleteData") || is_null($this->_propDict["incompleteData"])) {
return $this->_propDict["incompleteData"];
} else {
$this->_propDict["incompleteData"] = new IncompleteData($this->_propDict["incompleteData"]);
return $this->_propDict["incompleteData"];
}
}
return null;
}
/**
* Sets the incompleteData
* Indicates that the statistics in this interval are based on incomplete data. Read-only.
*
* @param IncompleteData $val The incompleteData
*
* @return ItemActivityStat
*/
public function setIncompleteData($val)
{
$this->_propDict["incompleteData"] = $val;
return $this;
}
/**
* Gets the isTrending
* Indicates whether the item is 'trending.' Read-only.
*
* @return bool|null The isTrending
*/
public function getIsTrending()
{
if (array_key_exists("isTrending", $this->_propDict)) {
return $this->_propDict["isTrending"];
} else {
return null;
}
}
/**
* Sets the isTrending
* Indicates whether the item is 'trending.' Read-only.
*
* @param bool $val The isTrending
*
* @return ItemActivityStat
*/
public function setIsTrending($val)
{
$this->_propDict["isTrending"] = boolval($val);
return $this;
}
/**
* Gets the move
* Statistics about the move actions in this interval. Read-only.
*
* @return ItemActionStat|null The move
*/
public function getMove()
{
if (array_key_exists("move", $this->_propDict)) {
if (is_a($this->_propDict["move"], "\Microsoft\Graph\Model\ItemActionStat") || is_null($this->_propDict["move"])) {
return $this->_propDict["move"];
} else {
$this->_propDict["move"] = new ItemActionStat($this->_propDict["move"]);
return $this->_propDict["move"];
}
}
return null;
}
/**
* Sets the move
* Statistics about the move actions in this interval. Read-only.
*
* @param ItemActionStat $val The move
*
* @return ItemActivityStat
*/
public function setMove($val)
{
$this->_propDict["move"] = $val;
return $this;
}
/**
* Gets the startDateTime
* When the interval starts. Read-only.
*
* @return \DateTime|null The startDateTime
*/
public function getStartDateTime()
{
if (array_key_exists("startDateTime", $this->_propDict)) {
if (is_a($this->_propDict["startDateTime"], "\DateTime") || is_null($this->_propDict["startDateTime"])) {
return $this->_propDict["startDateTime"];
} else {
$this->_propDict["startDateTime"] = new \DateTime($this->_propDict["startDateTime"]);
return $this->_propDict["startDateTime"];
}
}
return null;
}
/**
* Sets the startDateTime
* When the interval starts. Read-only.
*
* @param \DateTime $val The startDateTime
*
* @return ItemActivityStat
*/
public function setStartDateTime($val)
{
$this->_propDict["startDateTime"] = $val;
return $this;
}
/**
* Gets the activities
* Exposes the itemActivities represented in this itemActivityStat resource.
*
* @return array|null The activities
*/
public function getActivities()
{
if (array_key_exists("activities", $this->_propDict)) {
return $this->_propDict["activities"];
} else {
return null;
}
}
/**
* Sets the activities
* Exposes the itemActivities represented in this itemActivityStat resource.
*
* @param ItemActivity[] $val The activities
*
* @return ItemActivityStat
*/
public function setActivities($val)
{
$this->_propDict["activities"] = $val;
return $this;
}
}