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.
*
* Workbook 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;
/**
* Workbook 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 Workbook extends Entity
{
/**
* Gets the application
*
* @return WorkbookApplication|null The application
*/
public function getApplication()
{
if (array_key_exists("application", $this->_propDict)) {
if (is_a($this->_propDict["application"], "\Microsoft\Graph\Model\WorkbookApplication") || is_null($this->_propDict["application"])) {
return $this->_propDict["application"];
} else {
$this->_propDict["application"] = new WorkbookApplication($this->_propDict["application"]);
return $this->_propDict["application"];
}
}
return null;
}
/**
* Sets the application
*
* @param WorkbookApplication $val The application
*
* @return Workbook
*/
public function setApplication($val)
{
$this->_propDict["application"] = $val;
return $this;
}
/**
* Gets the comments
* Represents a collection of comments in a workbook.
*
* @return array|null The comments
*/
public function getComments()
{
if (array_key_exists("comments", $this->_propDict)) {
return $this->_propDict["comments"];
} else {
return null;
}
}
/**
* Sets the comments
* Represents a collection of comments in a workbook.
*
* @param WorkbookComment[] $val The comments
*
* @return Workbook
*/
public function setComments($val)
{
$this->_propDict["comments"] = $val;
return $this;
}
/**
* Gets the functions
*
* @return WorkbookFunctions|null The functions
*/
public function getFunctions()
{
if (array_key_exists("functions", $this->_propDict)) {
if (is_a($this->_propDict["functions"], "\Microsoft\Graph\Model\WorkbookFunctions") || is_null($this->_propDict["functions"])) {
return $this->_propDict["functions"];
} else {
$this->_propDict["functions"] = new WorkbookFunctions($this->_propDict["functions"]);
return $this->_propDict["functions"];
}
}
return null;
}
/**
* Sets the functions
*
* @param WorkbookFunctions $val The functions
*
* @return Workbook
*/
public function setFunctions($val)
{
$this->_propDict["functions"] = $val;
return $this;
}
/**
* Gets the names
* Represents a collection of workbooks scoped named items (named ranges and constants). Read-only.
*
* @return array|null The names
*/
public function getNames()
{
if (array_key_exists("names", $this->_propDict)) {
return $this->_propDict["names"];
} else {
return null;
}
}
/**
* Sets the names
* Represents a collection of workbooks scoped named items (named ranges and constants). Read-only.
*
* @param WorkbookNamedItem[] $val The names
*
* @return Workbook
*/
public function setNames($val)
{
$this->_propDict["names"] = $val;
return $this;
}
/**
* Gets the operations
* The status of workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only.
*
* @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 status of workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only.
*
* @param WorkbookOperation[] $val The operations
*
* @return Workbook
*/
public function setOperations($val)
{
$this->_propDict["operations"] = $val;
return $this;
}
/**
* Gets the tables
* Represents a collection of tables associated with the workbook. Read-only.
*
* @return array|null The tables
*/
public function getTables()
{
if (array_key_exists("tables", $this->_propDict)) {
return $this->_propDict["tables"];
} else {
return null;
}
}
/**
* Sets the tables
* Represents a collection of tables associated with the workbook. Read-only.
*
* @param WorkbookTable[] $val The tables
*
* @return Workbook
*/
public function setTables($val)
{
$this->_propDict["tables"] = $val;
return $this;
}
/**
* Gets the worksheets
* Represents a collection of worksheets associated with the workbook. Read-only.
*
* @return array|null The worksheets
*/
public function getWorksheets()
{
if (array_key_exists("worksheets", $this->_propDict)) {
return $this->_propDict["worksheets"];
} else {
return null;
}
}
/**
* Sets the worksheets
* Represents a collection of worksheets associated with the workbook. Read-only.
*
* @param WorkbookWorksheet[] $val The worksheets
*
* @return Workbook
*/
public function setWorksheets($val)
{
$this->_propDict["worksheets"] = $val;
return $this;
}
}