|
4 | 4 |
|
5 | 5 | namespace Fschmtt\Keycloak\Representation;
|
6 | 6 |
|
| 7 | +use Fschmtt\Keycloak\Type\Map; |
| 8 | + |
7 | 9 | /**
|
8 | 10 | * @method int|null getCreatedDate()
|
9 | 11 | * @method string|null getCredentialData()
|
|
43 | 45 | class Credential extends Representation
|
44 | 46 | {
|
45 | 47 | public function __construct(
|
46 |
| - protected ?int $createdDate = null, |
47 |
| - protected ?string $credentialData = null, |
48 | 48 | protected ?string $id = null,
|
49 |
| - protected ?int $priority = null, |
50 |
| - protected ?string $secretData = null, |
51 |
| - protected ?bool $temporary = null, |
52 | 49 | protected ?string $type = null,
|
53 | 50 | protected ?string $userLabel = null,
|
| 51 | + protected ?int $createdDate = null, |
| 52 | + protected ?string $secretData = null, |
| 53 | + protected ?string $credentialData = null, |
| 54 | + protected ?int $priority = null, |
54 | 55 | protected ?string $value = null,
|
| 56 | + protected ?bool $temporary = null, |
55 | 57 | protected ?string $device = null,
|
| 58 | + protected ?string $hashedSaltedValue = null, |
56 | 59 | protected ?string $salt = null,
|
57 | 60 | protected ?int $hashIterations = null,
|
58 |
| - protected ?string $algorithm = null, |
59 | 61 | protected ?int $counter = null,
|
| 62 | + protected ?string $algorithm = null, |
60 | 63 | protected ?int $digits = null,
|
61 | 64 | protected ?int $period = null,
|
| 65 | + protected ?Map $config = null, |
62 | 66 | ) {
|
63 | 67 | }
|
64 | 68 | }
|
0 commit comments