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 : /var/www/hopeinstoughton_www/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.
*
* ThumbnailSet 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;
/**
* ThumbnailSet 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 ThumbnailSet extends Entity
{
/**
* Gets the large
* A 1920x1920 scaled thumbnail.
*
* @return Thumbnail|null The large
*/
public function getLarge()
{
if (array_key_exists("large", $this->_propDict)) {
if (is_a($this->_propDict["large"], "\Microsoft\Graph\Model\Thumbnail") || is_null($this->_propDict["large"])) {
return $this->_propDict["large"];
} else {
$this->_propDict["large"] = new Thumbnail($this->_propDict["large"]);
return $this->_propDict["large"];
}
}
return null;
}
/**
* Sets the large
* A 1920x1920 scaled thumbnail.
*
* @param Thumbnail $val The large
*
* @return ThumbnailSet
*/
public function setLarge($val)
{
$this->_propDict["large"] = $val;
return $this;
}
/**
* Gets the medium
* A 176x176 scaled thumbnail.
*
* @return Thumbnail|null The medium
*/
public function getMedium()
{
if (array_key_exists("medium", $this->_propDict)) {
if (is_a($this->_propDict["medium"], "\Microsoft\Graph\Model\Thumbnail") || is_null($this->_propDict["medium"])) {
return $this->_propDict["medium"];
} else {
$this->_propDict["medium"] = new Thumbnail($this->_propDict["medium"]);
return $this->_propDict["medium"];
}
}
return null;
}
/**
* Sets the medium
* A 176x176 scaled thumbnail.
*
* @param Thumbnail $val The medium
*
* @return ThumbnailSet
*/
public function setMedium($val)
{
$this->_propDict["medium"] = $val;
return $this;
}
/**
* Gets the small
* A 48x48 cropped thumbnail.
*
* @return Thumbnail|null The small
*/
public function getSmall()
{
if (array_key_exists("small", $this->_propDict)) {
if (is_a($this->_propDict["small"], "\Microsoft\Graph\Model\Thumbnail") || is_null($this->_propDict["small"])) {
return $this->_propDict["small"];
} else {
$this->_propDict["small"] = new Thumbnail($this->_propDict["small"]);
return $this->_propDict["small"];
}
}
return null;
}
/**
* Sets the small
* A 48x48 cropped thumbnail.
*
* @param Thumbnail $val The small
*
* @return ThumbnailSet
*/
public function setSmall($val)
{
$this->_propDict["small"] = $val;
return $this;
}
/**
* Gets the source
* A custom thumbnail image or the original image used to generate other thumbnails.
*
* @return Thumbnail|null The source
*/
public function getSource()
{
if (array_key_exists("source", $this->_propDict)) {
if (is_a($this->_propDict["source"], "\Microsoft\Graph\Model\Thumbnail") || is_null($this->_propDict["source"])) {
return $this->_propDict["source"];
} else {
$this->_propDict["source"] = new Thumbnail($this->_propDict["source"]);
return $this->_propDict["source"];
}
}
return null;
}
/**
* Sets the source
* A custom thumbnail image or the original image used to generate other thumbnails.
*
* @param Thumbnail $val The source
*
* @return ThumbnailSet
*/
public function setSource($val)
{
$this->_propDict["source"] = $val;
return $this;
}
}