1 | <?php |
||
24 | class Profile implements JsonSerializable |
||
25 | { |
||
26 | /** |
||
27 | * @var Identity |
||
28 | */ |
||
29 | private $identity; |
||
30 | |||
31 | /** |
||
32 | * @var AuthorizedInstitutionCollection |
||
33 | */ |
||
34 | private $authorizedInstitutionCollection; |
||
35 | |||
36 | /** |
||
37 | * @var bool |
||
38 | */ |
||
39 | private $isSraa; |
||
40 | |||
41 | /** |
||
42 | * @param Identity $identity |
||
43 | * @param AuthorizedInstitutionCollection $authorizedInstitutionCollection |
||
44 | * @param bool $isSraa |
||
45 | */ |
||
46 | public function __construct(Identity $identity, AuthorizedInstitutionCollection $authorizedInstitutionCollection, $isSraa) |
||
52 | |||
53 | public function jsonSerialize() |
||
61 | } |
||
62 |