1
0
Fork 0
m365-php/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/EducationRoot.php

249 lines
5.6 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* EducationRoot 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 Beta\Microsoft\Graph\Model;
/**
* EducationRoot 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 EducationRoot implements \JsonSerializable
{
/**
* The array of properties available
* to the model
*
* @var array $_propDict
*/
protected $_propDict;
/**
* Construct a new EducationRoot
*
* @param array $propDict A list of properties to set
*/
function __construct($propDict = array())
{
if (!is_array($propDict)) {
$propDict = array();
}
$this->_propDict = $propDict;
}
/**
* Gets the property dictionary of the EducationRoot
*
* @return array The list of properties
*/
public function getProperties()
{
return $this->_propDict;
}
/**
* Gets the synchronizationProfiles
*
* @return array|null The synchronizationProfiles
*/
public function getSynchronizationProfiles()
{
if (array_key_exists("synchronizationProfiles", $this->_propDict)) {
return $this->_propDict["synchronizationProfiles"];
} else {
return null;
}
}
/**
* Sets the synchronizationProfiles
*
* @param EducationSynchronizationProfile[] $val The synchronizationProfiles
*
* @return EducationRoot
*/
public function setSynchronizationProfiles($val)
{
$this->_propDict["synchronizationProfiles"] = $val;
return $this;
}
/**
* Gets the classes
*
* @return array|null The classes
*/
public function getClasses()
{
if (array_key_exists("classes", $this->_propDict)) {
return $this->_propDict["classes"];
} else {
return null;
}
}
/**
* Sets the classes
*
* @param EducationClass[] $val The classes
*
* @return EducationRoot
*/
public function setClasses($val)
{
$this->_propDict["classes"] = $val;
return $this;
}
/**
* Gets the me
*
* @return EducationUser|null The me
*/
public function getMe()
{
if (array_key_exists("me", $this->_propDict)) {
if (is_a($this->_propDict["me"], "\Beta\Microsoft\Graph\Model\EducationUser") || is_null($this->_propDict["me"])) {
return $this->_propDict["me"];
} else {
$this->_propDict["me"] = new EducationUser($this->_propDict["me"]);
return $this->_propDict["me"];
}
}
return null;
}
/**
* Sets the me
*
* @param EducationUser $val The me
*
* @return EducationRoot
*/
public function setMe($val)
{
$this->_propDict["me"] = $val;
return $this;
}
/**
* Gets the schools
*
* @return array|null The schools
*/
public function getSchools()
{
if (array_key_exists("schools", $this->_propDict)) {
return $this->_propDict["schools"];
} else {
return null;
}
}
/**
* Sets the schools
*
* @param EducationSchool[] $val The schools
*
* @return EducationRoot
*/
public function setSchools($val)
{
$this->_propDict["schools"] = $val;
return $this;
}
/**
* Gets the users
*
* @return array|null The users
*/
public function getUsers()
{
if (array_key_exists("users", $this->_propDict)) {
return $this->_propDict["users"];
} else {
return null;
}
}
/**
* Sets the users
*
* @param EducationUser[] $val The users
*
* @return EducationRoot
*/
public function setUsers($val)
{
$this->_propDict["users"] = $val;
return $this;
}
/**
* Gets the ODataType
*
* @return string|null The ODataType
*/
public function getODataType()
{
if (array_key_exists('@odata.type', $this->_propDict)) {
return $this->_propDict["@odata.type"];
}
return null;
}
/**
* Sets the ODataType
*
* @param string $val The ODataType
*
* @return EducationRoot
*/
public function setODataType($val)
{
$this->_propDict["@odata.type"] = $val;
return $this;
}
/**
* Serializes the object by property array
* Manually serialize DateTime into RFC3339 format
*
* @return array The list of properties
*/
#[\ReturnTypeWillChange]
public function jsonSerialize()
{
$serializableProperties = $this->getProperties();
foreach ($serializableProperties as $property => $val) {
if (is_a($val, "\DateTime")) {
$serializableProperties[$property] = $val->format(\DateTime::RFC3339);
} else if (is_a($val, "\Microsoft\Graph\Core\Enum")) {
$serializableProperties[$property] = $val->value();
} else if (is_a($val, "\Entity")) {
$serializableProperties[$property] = $val->jsonSerialize();
}
}
return $serializableProperties;
}
}