FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: DirectoryObject.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * DirectoryObject 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; /** * DirectoryObject 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 DirectoryObject extends Entity { /** * Gets the deletedDateTime * Date and time when this object was deleted. Always null when the object hasn't been deleted. * * @return \DateTime|null The deletedDateTime */ public function getDeletedDateTime() { if (array_key_exists("deletedDateTime", $this->_propDict)) { if (is_a($this->_propDict["deletedDateTime"], "\DateTime") || is_null($this->_propDict["deletedDateTime"])) { return $this->_propDict["deletedDateTime"]; } else { $this->_propDict["deletedDateTime"] = new \DateTime($this->_propDict["deletedDateTime"]); return $this->_propDict["deletedDateTime"]; } } return null; } /** * Sets the deletedDateTime * Date and time when this object was deleted. Always null when the object hasn't been deleted. * * @param \DateTime $val The deletedDateTime * * @return DirectoryObject */ public function setDeletedDateTime($val) { $this->_propDict["deletedDateTime"] = $val; return $this; } }
Save
Back