FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: ItemAttachment.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * ItemAttachment 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; /** * ItemAttachment 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 ItemAttachment extends Attachment { /** * Gets the item * The attached message or event. Navigation property. * * @return OutlookItem|null The item */ public function getItem() { if (array_key_exists("item", $this->_propDict)) { if (is_a($this->_propDict["item"], "\Microsoft\Graph\Model\OutlookItem") || is_null($this->_propDict["item"])) { return $this->_propDict["item"]; } else { $this->_propDict["item"] = new OutlookItem($this->_propDict["item"]); return $this->_propDict["item"]; } } return null; } /** * Sets the item * The attached message or event. Navigation property. * * @param OutlookItem $val The item * * @return ItemAttachment */ public function setItem($val) { $this->_propDict["item"] = $val; return $this; } }
Save
Back