FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: TimeSlot.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * TimeSlot 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; /** * TimeSlot 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 TimeSlot extends Entity { /** * Gets the end * The date, time, and time zone that a period ends. * * @return DateTimeTimeZone|null The end */ public function getEnd() { if (array_key_exists("end", $this->_propDict)) { if (is_a($this->_propDict["end"], "\Microsoft\Graph\Model\DateTimeTimeZone") || is_null($this->_propDict["end"])) { return $this->_propDict["end"]; } else { $this->_propDict["end"] = new DateTimeTimeZone($this->_propDict["end"]); return $this->_propDict["end"]; } } return null; } /** * Sets the end * The date, time, and time zone that a period ends. * * @param DateTimeTimeZone $val The value to assign to the end * * @return TimeSlot The TimeSlot */ public function setEnd($val) { $this->_propDict["end"] = $val; return $this; } /** * Gets the start * The date, time, and time zone that a period begins. * * @return DateTimeTimeZone|null The start */ public function getStart() { if (array_key_exists("start", $this->_propDict)) { if (is_a($this->_propDict["start"], "\Microsoft\Graph\Model\DateTimeTimeZone") || is_null($this->_propDict["start"])) { return $this->_propDict["start"]; } else { $this->_propDict["start"] = new DateTimeTimeZone($this->_propDict["start"]); return $this->_propDict["start"]; } } return null; } /** * Sets the start * The date, time, and time zone that a period begins. * * @param DateTimeTimeZone $val The value to assign to the start * * @return TimeSlot The TimeSlot */ public function setStart($val) { $this->_propDict["start"] = $val; return $this; } }
Save
Back