1 | <?php |
||
32 | class InstitutionAuthorization |
||
33 | { |
||
34 | /** |
||
35 | * @ORM\Id |
||
36 | * @ORM\Column(type="stepup_configuration_institution") |
||
37 | * |
||
38 | * @var Institution |
||
39 | */ |
||
40 | public $institution; |
||
41 | |||
42 | /** |
||
43 | * @ORM\Column(type="stepup_use_ra_option", nullable=true) |
||
44 | * |
||
45 | * @var UseRaOption |
||
46 | */ |
||
47 | public $useRaOption; |
||
48 | |||
49 | /** |
||
50 | * @ORM\Column(type="stepup_use_raa_option", nullable=true) |
||
51 | * |
||
52 | * @var UseRaaOption |
||
53 | */ |
||
54 | public $useRaaOption; |
||
55 | |||
56 | /** |
||
57 | * @ORM\Column(type="stepup_select_raa_option", nullable=true) |
||
58 | * |
||
59 | * @var SelectRaaOption |
||
60 | */ |
||
61 | public $selectRaaOption; |
||
62 | |||
63 | public static function create( |
||
79 | } |
||
80 |