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

175 lines
4.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.
*
* TenantGroup 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\ManagedTenants\Model;
/**
* TenantGroup 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 TenantGroup extends \Beta\Microsoft\Graph\Model\Entity
{
/**
* Gets the allTenantsIncluded
* A flag indicating whether all managed tenant are included in the tenant group. Required. Read-only.
*
* @return bool|null The allTenantsIncluded
*/
public function getAllTenantsIncluded()
{
if (array_key_exists("allTenantsIncluded", $this->_propDict)) {
return $this->_propDict["allTenantsIncluded"];
} else {
return null;
}
}
/**
* Sets the allTenantsIncluded
* A flag indicating whether all managed tenant are included in the tenant group. Required. Read-only.
*
* @param bool $val The allTenantsIncluded
*
* @return TenantGroup
*/
public function setAllTenantsIncluded($val)
{
$this->_propDict["allTenantsIncluded"] = boolval($val);
return $this;
}
/**
* Gets the displayName
* The display name for the tenant group. Optional. Read-only.
*
* @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
* The display name for the tenant group. Optional. Read-only.
*
* @param string $val The displayName
*
* @return TenantGroup
*/
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
}
/**
* Gets the managementActions
* The collection of management action associated with the tenant group. Optional. Read-only.
*
* @return array|null The managementActions
*/
public function getManagementActions()
{
if (array_key_exists("managementActions", $this->_propDict)) {
return $this->_propDict["managementActions"];
} else {
return null;
}
}
/**
* Sets the managementActions
* The collection of management action associated with the tenant group. Optional. Read-only.
*
* @param ManagementActionInfo[] $val The managementActions
*
* @return TenantGroup
*/
public function setManagementActions($val)
{
$this->_propDict["managementActions"] = $val;
return $this;
}
/**
* Gets the managementIntents
* The collection of management intents associated with the tenant group. Optional. Read-only.
*
* @return array|null The managementIntents
*/
public function getManagementIntents()
{
if (array_key_exists("managementIntents", $this->_propDict)) {
return $this->_propDict["managementIntents"];
} else {
return null;
}
}
/**
* Sets the managementIntents
* The collection of management intents associated with the tenant group. Optional. Read-only.
*
* @param ManagementIntentInfo[] $val The managementIntents
*
* @return TenantGroup
*/
public function setManagementIntents($val)
{
$this->_propDict["managementIntents"] = $val;
return $this;
}
/**
* Gets the tenantIds
* The collection of managed tenant identifiers include in the tenant group. Optional. Read-only.
*
* @return array|null The tenantIds
*/
public function getTenantIds()
{
if (array_key_exists("tenantIds", $this->_propDict)) {
return $this->_propDict["tenantIds"];
} else {
return null;
}
}
/**
* Sets the tenantIds
* The collection of managed tenant identifiers include in the tenant group. Optional. Read-only.
*
* @param string[] $val The tenantIds
*
* @return TenantGroup
*/
public function setTenantIds($val)
{
$this->_propDict["tenantIds"] = $val;
return $this;
}
}