| 1 | <?php |
||
| 28 | class RevokeRegistrantsSecondFactorCommand extends AbstractCommand implements RaExecutable |
||
| 29 | { |
||
| 30 | /** |
||
| 31 | * The ID of the identity that has the authority to issue the revocation of a registrant's second factor. |
||
| 32 | * |
||
| 33 | * @Assert\NotBlank() |
||
| 34 | * @Assert\Type(type="string") |
||
| 35 | * |
||
| 36 | * @var string |
||
| 37 | */ |
||
| 38 | public $authorityId; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * The ID of an identity. |
||
| 42 | * |
||
| 43 | * @Assert\NotBlank() |
||
| 44 | * @Assert\Type(type="string") |
||
| 45 | * |
||
| 46 | * @var string |
||
| 47 | */ |
||
| 48 | public $identityId; |
||
| 49 | |||
| 50 | /** |
||
| 51 | * The ID of a verified or vetted second factor. |
||
| 52 | * |
||
| 53 | * @Assert\NotBlank() |
||
| 54 | * @Assert\Type(type="string") |
||
| 55 | * |
||
| 56 | * @var string |
||
| 57 | */ |
||
| 58 | public $secondFactorId; |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @inheritDoc |
||
| 62 | */ |
||
| 63 | public function getRaInstitution() |
||
| 67 | } |
||
| 68 |