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

173 lines
4.3 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* CustomTrainingSetting 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;
/**
* CustomTrainingSetting 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 CustomTrainingSetting extends TrainingSetting
{
/**
* Set the @odata.type since this type is immediately descended from an abstract
* type that is referenced as the type in an entity.
* @param array $propDict The property dictionary
*/
public function __construct($propDict = array())
{
parent::__construct($propDict);
$this->setODataType("#microsoft.graph.customTrainingSetting");
}
/**
* Gets the assignedTo
*
* @return TrainingAssignedTo|null The assignedTo
*/
public function getAssignedTo()
{
if (array_key_exists("assignedTo", $this->_propDict)) {
if (is_a($this->_propDict["assignedTo"], "\Beta\Microsoft\Graph\Model\TrainingAssignedTo") || is_null($this->_propDict["assignedTo"])) {
return $this->_propDict["assignedTo"];
} else {
$this->_propDict["assignedTo"] = new TrainingAssignedTo($this->_propDict["assignedTo"]);
return $this->_propDict["assignedTo"];
}
}
return null;
}
/**
* Sets the assignedTo
*
* @param TrainingAssignedTo $val The value to assign to the assignedTo
*
* @return CustomTrainingSetting The CustomTrainingSetting
*/
public function setAssignedTo($val)
{
$this->_propDict["assignedTo"] = $val;
return $this;
}
/**
* Gets the description
*
* @return string|null The description
*/
public function getDescription()
{
if (array_key_exists("description", $this->_propDict)) {
return $this->_propDict["description"];
} else {
return null;
}
}
/**
* Sets the description
*
* @param string $val The value of the description
*
* @return CustomTrainingSetting
*/
public function setDescription($val)
{
$this->_propDict["description"] = $val;
return $this;
}
/**
* Gets the displayName
*
* @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
*
* @param string $val The value of the displayName
*
* @return CustomTrainingSetting
*/
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
}
/**
* Gets the durationInMinutes
*
* @return string|null The durationInMinutes
*/
public function getDurationInMinutes()
{
if (array_key_exists("durationInMinutes", $this->_propDict)) {
return $this->_propDict["durationInMinutes"];
} else {
return null;
}
}
/**
* Sets the durationInMinutes
*
* @param string $val The value of the durationInMinutes
*
* @return CustomTrainingSetting
*/
public function setDurationInMinutes($val)
{
$this->_propDict["durationInMinutes"] = $val;
return $this;
}
/**
* Gets the url
*
* @return string|null The url
*/
public function getUrl()
{
if (array_key_exists("url", $this->_propDict)) {
return $this->_propDict["url"];
} else {
return null;
}
}
/**
* Sets the url
*
* @param string $val The value of the url
*
* @return CustomTrainingSetting
*/
public function setUrl($val)
{
$this->_propDict["url"] = $val;
return $this;
}
}