-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathDirectoryRoleTemplate.php
53 lines (50 loc) · 2.21 KB
/
DirectoryRoleTemplate.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/**
* Modified: 2020-05-24T22:10:26+00:00
*/
namespace Office365\Directory;
use Office365\Entity;
/**
* Represents a directory role template. A directory role template specifies the property values of a directory role ([directoryRole](directoryrole.md)). There is an associated directory role template object for each of the directory roles that may be activated in a tenant. To read a directory role or update its members, it must first be activated in the tenant. Only the Company Administrators directory role is activated by default. To activate other available directory roles you send a POST request to the `/directoryRoles` endpoint with the ID of the directory role template on which the directory role is based specified in the **roleTemplateId** parameter of the request. Upon successful completion of this request, you can then start to read and assign members to the directory role. **Note**: A directory role template is exposed for the Users directory role. The Users directory role is implicit and is not visible to directory clients. Every User in the tenant is assigned to this role by the infrastructure. The role is already activated. Do not use this template.
*/
class DirectoryRoleTemplate extends Entity
{
/**
* The description to set for the directory role. Read-only.
* @return string
*/
public function getDescription()
{
if (!$this->isPropertyAvailable("Description")) {
return null;
}
return $this->getProperty("Description");
}
/**
* The description to set for the directory role. Read-only.
* @var string
*/
public function setDescription($value)
{
$this->setProperty("Description", $value, true);
}
/**
* The display name to set for the directory role. Read-only.
* @return string
*/
public function getDisplayName()
{
if (!$this->isPropertyAvailable("DisplayName")) {
return null;
}
return $this->getProperty("DisplayName");
}
/**
* The display name to set for the directory role. Read-only.
* @var string
*/
public function setDisplayName($value)
{
$this->setProperty("DisplayName", $value, true);
}
}