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