1 | <?php |
||
21 | class SelfVetRequestId |
||
22 | { |
||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | private $requestId; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | private $vettingSecondFactorId; |
||
32 | |||
33 | public function __construct(string $requestId, string $vettingSecondFactorId) |
||
38 | |||
39 | public function requestId(): string |
||
43 | |||
44 | public function vettingSecondFactorId(): string |
||
48 | } |
||
49 |