1 | <?php |
||
25 | class SelfVetSecondFactorCommand extends AbstractCommand implements RaExecutable |
||
26 | { |
||
27 | /** |
||
28 | * The ID of an existing identity. |
||
29 | * |
||
30 | * @Assert\NotBlank() |
||
31 | * @Assert\Type(type="string") |
||
32 | * |
||
33 | * @var string |
||
34 | */ |
||
35 | public $identityId; |
||
36 | |||
37 | /** |
||
38 | * @Assert\NotBlank() |
||
39 | * @Assert\Type(type="string") |
||
40 | * |
||
41 | * @var string |
||
42 | */ |
||
43 | public $secondFactorId; |
||
44 | |||
45 | /** |
||
46 | * @Assert\NotBlank() |
||
47 | * @Assert\Type(type="string") |
||
48 | * |
||
49 | * @var string |
||
50 | */ |
||
51 | public $secondFactorType; |
||
52 | |||
53 | /** |
||
54 | * @Assert\NotBlank() |
||
55 | * @Assert\Type(type="string") |
||
56 | * |
||
57 | * @var string |
||
58 | */ |
||
59 | public $registrationCode; |
||
60 | |||
61 | /** |
||
62 | * @Assert\NotBlank() |
||
63 | * @Assert\Type(type="string") |
||
64 | * |
||
65 | * @var string |
||
66 | */ |
||
67 | public $authoringSecondFactorIdentifier; |
||
68 | |||
69 | /** |
||
70 | * @inheritDoc |
||
71 | */ |
||
72 | public function getRaInstitution() |
||
76 | } |
||
77 |