forked from fschmtt/keycloak-rest-api-client-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Role.php
33 lines (29 loc) · 855 Bytes
/
Role.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
<?php
declare(strict_types=1);
namespace Fschmtt\Keycloak\Representation;
use Fschmtt\Keycloak\Type\Map;
/**
* @method array|null getAttributes()
* @method bool|null getClientRole()
* @method bool|null getComposite()
* @method RoleComposites|null getComposites()
* @method string|null getContainerId()
* @method string|null getDescription()
* @method string|null getName()
*
* @codeCoverageIgnore
*/
class Role extends Representation
{
public function __construct(
protected ?Map $attributes = null,
protected ?bool $clientRole = null,
protected ?bool $composite = null,
protected ?RoleComposites $composites = null,
protected ?string $containerId = null,
protected ?string $description = null,
protected ?string $id = null,
protected ?string $name = null,
) {
}
}