FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
Edit File: EducationTeacher.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * EducationTeacher 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; /** * EducationTeacher 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 EducationTeacher extends Entity { /** * Gets the externalId * ID of the teacher in the source 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 the teacher in the source system. * * @param string $val The value of the externalId * * @return EducationTeacher */ public function setExternalId($val) { $this->_propDict["externalId"] = $val; return $this; } /** * Gets the teacherNumber * Teacher number. * * @return string|null The teacherNumber */ public function getTeacherNumber() { if (array_key_exists("teacherNumber", $this->_propDict)) { return $this->_propDict["teacherNumber"]; } else { return null; } } /** * Sets the teacherNumber * Teacher number. * * @param string $val The value of the teacherNumber * * @return EducationTeacher */ public function setTeacherNumber($val) { $this->_propDict["teacherNumber"] = $val; return $this; } }
Save
Back