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

116 lines
3.0 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* PlannerExternalBucketSource 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;
/**
* PlannerExternalBucketSource 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 PlannerExternalBucketSource extends PlannerBucketCreation
{
/**
* 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.plannerExternalBucketSource");
}
/**
* Gets the contextScenarioId
*
* @return string|null The contextScenarioId
*/
public function getContextScenarioId()
{
if (array_key_exists("contextScenarioId", $this->_propDict)) {
return $this->_propDict["contextScenarioId"];
} else {
return null;
}
}
/**
* Sets the contextScenarioId
*
* @param string $val The value of the contextScenarioId
*
* @return PlannerExternalBucketSource
*/
public function setContextScenarioId($val)
{
$this->_propDict["contextScenarioId"] = $val;
return $this;
}
/**
* Gets the externalContextId
*
* @return string|null The externalContextId
*/
public function getExternalContextId()
{
if (array_key_exists("externalContextId", $this->_propDict)) {
return $this->_propDict["externalContextId"];
} else {
return null;
}
}
/**
* Sets the externalContextId
*
* @param string $val The value of the externalContextId
*
* @return PlannerExternalBucketSource
*/
public function setExternalContextId($val)
{
$this->_propDict["externalContextId"] = $val;
return $this;
}
/**
* Gets the externalObjectId
*
* @return string|null The externalObjectId
*/
public function getExternalObjectId()
{
if (array_key_exists("externalObjectId", $this->_propDict)) {
return $this->_propDict["externalObjectId"];
} else {
return null;
}
}
/**
* Sets the externalObjectId
*
* @param string $val The value of the externalObjectId
*
* @return PlannerExternalBucketSource
*/
public function setExternalObjectId($val)
{
$this->_propDict["externalObjectId"] = $val;
return $this;
}
}