whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/vendor/microsoft/microsoft-graph/src/Model/Image.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * Image 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; /** * Image 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 Image extends Entity { /** * Gets the height * Optional. Height of the image, in pixels. Read-only. * * @return int|null The height */ public function getHeight() { if (array_key_exists("height", $this->_propDict)) { return $this->_propDict["height"]; } else { return null; } } /** * Sets the height * Optional. Height of the image, in pixels. Read-only. * * @param int $val The value of the height * * @return Image */ public function setHeight($val) { $this->_propDict["height"] = $val; return $this; } /** * Gets the width * Optional. Width of the image, in pixels. Read-only. * * @return int|null The width */ public function getWidth() { if (array_key_exists("width", $this->_propDict)) { return $this->_propDict["width"]; } else { return null; } } /** * Sets the width * Optional. Width of the image, in pixels. Read-only. * * @param int $val The value of the width * * @return Image */ public function setWidth($val) { $this->_propDict["width"] = $val; return $this; } }
Copyright ©2021 || Defacer Indonesia