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/ResourceReference.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * ResourceReference 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; /** * ResourceReference 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 ResourceReference extends Entity { /** * Gets the id * The item's unique identifier. * * @return string|null The id */ public function getId() { if (array_key_exists("id", $this->_propDict)) { return $this->_propDict["id"]; } else { return null; } } /** * Sets the id * The item's unique identifier. * * @param string $val The value of the id * * @return ResourceReference */ public function setId($val) { $this->_propDict["id"] = $val; return $this; } /** * Gets the type * A string value that can be used to classify the item, such as 'microsoft.graph.driveItem' * * @return string|null The type */ public function getType() { if (array_key_exists("type", $this->_propDict)) { return $this->_propDict["type"]; } else { return null; } } /** * Sets the type * A string value that can be used to classify the item, such as 'microsoft.graph.driveItem' * * @param string $val The value of the type * * @return ResourceReference */ public function setType($val) { $this->_propDict["type"] = $val; return $this; } /** * Gets the webUrl * A URL leading to the referenced item. * * @return string|null The webUrl */ public function getWebUrl() { if (array_key_exists("webUrl", $this->_propDict)) { return $this->_propDict["webUrl"]; } else { return null; } } /** * Sets the webUrl * A URL leading to the referenced item. * * @param string $val The value of the webUrl * * @return ResourceReference */ public function setWebUrl($val) { $this->_propDict["webUrl"] = $val; return $this; } }
Copyright ©2021 || Defacer Indonesia