1 | <?php declare(strict_types = 1); |
||
7 | class TransactionSettlementResponse |
||
8 | { |
||
9 | |||
10 | /** |
||
11 | * @var DateTimeImmutable |
||
12 | */ |
||
13 | private $createdDate; |
||
14 | |||
15 | /** |
||
16 | * @var DateTimeImmutable|null |
||
17 | */ |
||
18 | private $authDate; |
||
19 | |||
20 | /** |
||
21 | * @var DateTimeImmutable|null |
||
22 | */ |
||
23 | private $settlementDate; |
||
24 | |||
25 | 1 | public function __construct( |
|
35 | |||
36 | 1 | public function getCreatedDate(): DateTimeImmutable |
|
40 | |||
41 | /** |
||
42 | * @return DateTimeImmutable|null |
||
43 | */ |
||
44 | 1 | public function getAuthDate() |
|
48 | |||
49 | /** |
||
50 | * @return DateTimeImmutable|null |
||
51 | */ |
||
52 | 1 | public function getSettlementDate() |
|
56 | |||
57 | } |
||
58 |