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

233 lines
6.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.
*
* PrivilegedAccessGroupEligibilityScheduleRequest 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;
/**
* PrivilegedAccessGroupEligibilityScheduleRequest 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 PrivilegedAccessGroupEligibilityScheduleRequest extends PrivilegedAccessScheduleRequest
{
/**
* Gets the accessId
*
* @return PrivilegedAccessGroupRelationships|null The accessId
*/
public function getAccessId()
{
if (array_key_exists("accessId", $this->_propDict)) {
if (is_a($this->_propDict["accessId"], "\Beta\Microsoft\Graph\Model\PrivilegedAccessGroupRelationships") || is_null($this->_propDict["accessId"])) {
return $this->_propDict["accessId"];
} else {
$this->_propDict["accessId"] = new PrivilegedAccessGroupRelationships($this->_propDict["accessId"]);
return $this->_propDict["accessId"];
}
}
return null;
}
/**
* Sets the accessId
*
* @param PrivilegedAccessGroupRelationships $val The accessId
*
* @return PrivilegedAccessGroupEligibilityScheduleRequest
*/
public function setAccessId($val)
{
$this->_propDict["accessId"] = $val;
return $this;
}
/**
* Gets the groupId
*
* @return string|null The groupId
*/
public function getGroupId()
{
if (array_key_exists("groupId", $this->_propDict)) {
return $this->_propDict["groupId"];
} else {
return null;
}
}
/**
* Sets the groupId
*
* @param string $val The groupId
*
* @return PrivilegedAccessGroupEligibilityScheduleRequest
*/
public function setGroupId($val)
{
$this->_propDict["groupId"] = $val;
return $this;
}
/**
* Gets the principalId
*
* @return string|null The principalId
*/
public function getPrincipalId()
{
if (array_key_exists("principalId", $this->_propDict)) {
return $this->_propDict["principalId"];
} else {
return null;
}
}
/**
* Sets the principalId
*
* @param string $val The principalId
*
* @return PrivilegedAccessGroupEligibilityScheduleRequest
*/
public function setPrincipalId($val)
{
$this->_propDict["principalId"] = $val;
return $this;
}
/**
* Gets the targetScheduleId
*
* @return string|null The targetScheduleId
*/
public function getTargetScheduleId()
{
if (array_key_exists("targetScheduleId", $this->_propDict)) {
return $this->_propDict["targetScheduleId"];
} else {
return null;
}
}
/**
* Sets the targetScheduleId
*
* @param string $val The targetScheduleId
*
* @return PrivilegedAccessGroupEligibilityScheduleRequest
*/
public function setTargetScheduleId($val)
{
$this->_propDict["targetScheduleId"] = $val;
return $this;
}
/**
* Gets the group
*
* @return Group|null The group
*/
public function getGroup()
{
if (array_key_exists("group", $this->_propDict)) {
if (is_a($this->_propDict["group"], "\Beta\Microsoft\Graph\Model\Group") || is_null($this->_propDict["group"])) {
return $this->_propDict["group"];
} else {
$this->_propDict["group"] = new Group($this->_propDict["group"]);
return $this->_propDict["group"];
}
}
return null;
}
/**
* Sets the group
*
* @param Group $val The group
*
* @return PrivilegedAccessGroupEligibilityScheduleRequest
*/
public function setGroup($val)
{
$this->_propDict["group"] = $val;
return $this;
}
/**
* Gets the principal
*
* @return DirectoryObject|null The principal
*/
public function getPrincipal()
{
if (array_key_exists("principal", $this->_propDict)) {
if (is_a($this->_propDict["principal"], "\Beta\Microsoft\Graph\Model\DirectoryObject") || is_null($this->_propDict["principal"])) {
return $this->_propDict["principal"];
} else {
$this->_propDict["principal"] = new DirectoryObject($this->_propDict["principal"]);
return $this->_propDict["principal"];
}
}
return null;
}
/**
* Sets the principal
*
* @param DirectoryObject $val The principal
*
* @return PrivilegedAccessGroupEligibilityScheduleRequest
*/
public function setPrincipal($val)
{
$this->_propDict["principal"] = $val;
return $this;
}
/**
* Gets the targetSchedule
*
* @return PrivilegedAccessGroupEligibilitySchedule|null The targetSchedule
*/
public function getTargetSchedule()
{
if (array_key_exists("targetSchedule", $this->_propDict)) {
if (is_a($this->_propDict["targetSchedule"], "\Beta\Microsoft\Graph\Model\PrivilegedAccessGroupEligibilitySchedule") || is_null($this->_propDict["targetSchedule"])) {
return $this->_propDict["targetSchedule"];
} else {
$this->_propDict["targetSchedule"] = new PrivilegedAccessGroupEligibilitySchedule($this->_propDict["targetSchedule"]);
return $this->_propDict["targetSchedule"];
}
}
return null;
}
/**
* Sets the targetSchedule
*
* @param PrivilegedAccessGroupEligibilitySchedule $val The targetSchedule
*
* @return PrivilegedAccessGroupEligibilityScheduleRequest
*/
public function setTargetSchedule($val)
{
$this->_propDict["targetSchedule"] = $val;
return $this;
}
}