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

175 lines
4.5 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* PrivilegedAccessSchedule 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;
/**
* PrivilegedAccessSchedule 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 PrivilegedAccessSchedule extends Entity
{
/**
* Gets the createdDateTime
*
* @return \DateTime|null The createdDateTime
*/
public function getCreatedDateTime()
{
if (array_key_exists("createdDateTime", $this->_propDict)) {
if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) {
return $this->_propDict["createdDateTime"];
} else {
$this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]);
return $this->_propDict["createdDateTime"];
}
}
return null;
}
/**
* Sets the createdDateTime
*
* @param \DateTime $val The createdDateTime
*
* @return PrivilegedAccessSchedule
*/
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
}
/**
* Gets the createdUsing
*
* @return string|null The createdUsing
*/
public function getCreatedUsing()
{
if (array_key_exists("createdUsing", $this->_propDict)) {
return $this->_propDict["createdUsing"];
} else {
return null;
}
}
/**
* Sets the createdUsing
*
* @param string $val The createdUsing
*
* @return PrivilegedAccessSchedule
*/
public function setCreatedUsing($val)
{
$this->_propDict["createdUsing"] = $val;
return $this;
}
/**
* Gets the modifiedDateTime
*
* @return \DateTime|null The modifiedDateTime
*/
public function getModifiedDateTime()
{
if (array_key_exists("modifiedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["modifiedDateTime"], "\DateTime") || is_null($this->_propDict["modifiedDateTime"])) {
return $this->_propDict["modifiedDateTime"];
} else {
$this->_propDict["modifiedDateTime"] = new \DateTime($this->_propDict["modifiedDateTime"]);
return $this->_propDict["modifiedDateTime"];
}
}
return null;
}
/**
* Sets the modifiedDateTime
*
* @param \DateTime $val The modifiedDateTime
*
* @return PrivilegedAccessSchedule
*/
public function setModifiedDateTime($val)
{
$this->_propDict["modifiedDateTime"] = $val;
return $this;
}
/**
* Gets the scheduleInfo
*
* @return RequestSchedule|null The scheduleInfo
*/
public function getScheduleInfo()
{
if (array_key_exists("scheduleInfo", $this->_propDict)) {
if (is_a($this->_propDict["scheduleInfo"], "\Beta\Microsoft\Graph\Model\RequestSchedule") || is_null($this->_propDict["scheduleInfo"])) {
return $this->_propDict["scheduleInfo"];
} else {
$this->_propDict["scheduleInfo"] = new RequestSchedule($this->_propDict["scheduleInfo"]);
return $this->_propDict["scheduleInfo"];
}
}
return null;
}
/**
* Sets the scheduleInfo
*
* @param RequestSchedule $val The scheduleInfo
*
* @return PrivilegedAccessSchedule
*/
public function setScheduleInfo($val)
{
$this->_propDict["scheduleInfo"] = $val;
return $this;
}
/**
* Gets the status
*
* @return string|null The status
*/
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
return $this->_propDict["status"];
} else {
return null;
}
}
/**
* Sets the status
*
* @param string $val The status
*
* @return PrivilegedAccessSchedule
*/
public function setStatus($val)
{
$this->_propDict["status"] = $val;
return $this;
}
}