1 | <?php |
||
16 | class Consent |
||
17 | { |
||
18 | private $clientId; |
||
19 | private $userAccountId; |
||
20 | private $scope; |
||
21 | private $claims; |
||
22 | |||
23 | public function __construct(string $clientId, string $userAccountId, string $scope, string $claims) |
||
30 | |||
31 | public function getClientId(): string |
||
35 | |||
36 | public function getUserAccountId(): string |
||
40 | |||
41 | public function getScope(): string |
||
45 | |||
46 | public function getClaims(): string |
||
50 | } |
||
51 |