FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: ItemAnalytics.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * ItemAnalytics 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; /** * ItemAnalytics 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 ItemAnalytics extends Entity { /** * Gets the allTime * * @return ItemActivityStat|null The allTime */ public function getAllTime() { if (array_key_exists("allTime", $this->_propDict)) { if (is_a($this->_propDict["allTime"], "\Microsoft\Graph\Model\ItemActivityStat") || is_null($this->_propDict["allTime"])) { return $this->_propDict["allTime"]; } else { $this->_propDict["allTime"] = new ItemActivityStat($this->_propDict["allTime"]); return $this->_propDict["allTime"]; } } return null; } /** * Sets the allTime * * @param ItemActivityStat $val The allTime * * @return ItemAnalytics */ public function setAllTime($val) { $this->_propDict["allTime"] = $val; return $this; } /** * Gets the itemActivityStats * * @return array|null The itemActivityStats */ public function getItemActivityStats() { if (array_key_exists("itemActivityStats", $this->_propDict)) { return $this->_propDict["itemActivityStats"]; } else { return null; } } /** * Sets the itemActivityStats * * @param ItemActivityStat[] $val The itemActivityStats * * @return ItemAnalytics */ public function setItemActivityStats($val) { $this->_propDict["itemActivityStats"] = $val; return $this; } /** * Gets the lastSevenDays * * @return ItemActivityStat|null The lastSevenDays */ public function getLastSevenDays() { if (array_key_exists("lastSevenDays", $this->_propDict)) { if (is_a($this->_propDict["lastSevenDays"], "\Microsoft\Graph\Model\ItemActivityStat") || is_null($this->_propDict["lastSevenDays"])) { return $this->_propDict["lastSevenDays"]; } else { $this->_propDict["lastSevenDays"] = new ItemActivityStat($this->_propDict["lastSevenDays"]); return $this->_propDict["lastSevenDays"]; } } return null; } /** * Sets the lastSevenDays * * @param ItemActivityStat $val The lastSevenDays * * @return ItemAnalytics */ public function setLastSevenDays($val) { $this->_propDict["lastSevenDays"] = $val; return $this; } }
Save
Back