1 | <?php |
||
16 | class Consent |
||
17 | { |
||
18 | private $clientId; |
||
19 | private $userAccountId; |
||
20 | private $requestedScope; |
||
21 | private $grantedScope; |
||
22 | private $requestedClaims; |
||
23 | private $grantedClaims; |
||
24 | |||
25 | public function __construct(string $clientId, string $userAccountId, string $scope, string $claims) |
||
32 | |||
33 | public function getClientId(): string |
||
37 | |||
38 | public function getUserAccountId(): string |
||
42 | |||
43 | public function getRequestedScope(): string |
||
47 | |||
48 | public function getRequestedClaims(): string |
||
49 | { |
||
50 | return $this->requestedClaims; |
||
51 | } |
||
73 |