Total Complexity | 4 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
7 | final class TransactionReference |
||
8 | { |
||
9 | /** |
||
10 | * @var string|null |
||
11 | * @SerializedName("TransactionId") |
||
12 | */ |
||
13 | private $transactionId; |
||
14 | |||
15 | /** |
||
16 | * @var string|null |
||
17 | * @SerializedName("OrderId") |
||
18 | */ |
||
19 | private $orderId; |
||
20 | |||
21 | public function getTransactionId(): ?string |
||
24 | } |
||
25 | |||
26 | public function setTransactionId(?string $transactionId): self |
||
27 | { |
||
28 | $this->transactionId = $transactionId; |
||
29 | |||
30 | return $this; |
||
31 | } |
||
32 | |||
33 | public function getOrderId(): ?string |
||
36 | } |
||
37 | |||
38 | public function setOrderId(?string $orderId): self |
||
43 | } |
||
44 | } |
||
45 |