1 | <?php declare(strict_types = 1); |
||
7 | class MaskedCardNumberResponse |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | private $longMaskedCln; |
||
14 | |||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | private $maskedCln; |
||
19 | |||
20 | /** |
||
21 | * @var DateTimeImmutable |
||
22 | */ |
||
23 | private $expiration; |
||
24 | |||
25 | 1 | public function __construct( |
|
35 | |||
36 | 1 | public function getLongMaskedCln(): string |
|
40 | |||
41 | 1 | public function getMaskedCln(): string |
|
45 | |||
46 | 1 | public function getExpiration(): DateTimeImmutable |
|
50 | |||
51 | } |
||
52 |