FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: EducationTerm.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * EducationTerm 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; /** * EducationTerm 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 EducationTerm extends Entity { /** * Gets the displayName * Display name of the term. * * @return string|null The displayName */ public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * Display name of the term. * * @param string $val The value of the displayName * * @return EducationTerm */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the endDate * End of the term. * * @return \DateTime|null The endDate */ public function getEndDate() { if (array_key_exists("endDate", $this->_propDict)) { if (is_a($this->_propDict["endDate"], "\DateTime") || is_null($this->_propDict["endDate"])) { return $this->_propDict["endDate"]; } else { $this->_propDict["endDate"] = new \DateTime($this->_propDict["endDate"]); return $this->_propDict["endDate"]; } } return null; } /** * Sets the endDate * End of the term. * * @param \DateTime $val The value to assign to the endDate * * @return EducationTerm The EducationTerm */ public function setEndDate($val) { $this->_propDict["endDate"] = $val; return $this; } /** * Gets the externalId * ID of term in the syncing system. * * @return string|null The externalId */ public function getExternalId() { if (array_key_exists("externalId", $this->_propDict)) { return $this->_propDict["externalId"]; } else { return null; } } /** * Sets the externalId * ID of term in the syncing system. * * @param string $val The value of the externalId * * @return EducationTerm */ public function setExternalId($val) { $this->_propDict["externalId"] = $val; return $this; } /** * Gets the startDate * Start of the term. * * @return \DateTime|null The startDate */ public function getStartDate() { if (array_key_exists("startDate", $this->_propDict)) { if (is_a($this->_propDict["startDate"], "\DateTime") || is_null($this->_propDict["startDate"])) { return $this->_propDict["startDate"]; } else { $this->_propDict["startDate"] = new \DateTime($this->_propDict["startDate"]); return $this->_propDict["startDate"]; } } return null; } /** * Sets the startDate * Start of the term. * * @param \DateTime $val The value to assign to the startDate * * @return EducationTerm The EducationTerm */ public function setStartDate($val) { $this->_propDict["startDate"] = $val; return $this; } }
Save
Back