| 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 |
||
| 52 | |||
| 53 | public function getGrantedScope(): string |
||
| 57 | |||
| 58 | public function setGrantedScope(string $grantedScope): void |
||
| 62 | |||
| 63 | public function getGrantedClaims(): string |
||
| 67 | |||
| 68 | public function setGrantedClaims(string $grantedClaims): void |
||
| 72 | } |
||
| 73 |