| Total Complexity | 3 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | final class CancelResponse extends Response |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string|null |
||
| 15 | * @SerializedName("TransactionId") |
||
| 16 | * @Type("string") |
||
| 17 | */ |
||
| 18 | private $transactionId; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var string|null |
||
| 22 | * @SerializedName("OrderId") |
||
| 23 | * @Type("string") |
||
| 24 | */ |
||
| 25 | private $orderId; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string|null |
||
| 29 | * @SerializedName("Date") |
||
| 30 | * @Type("string") |
||
| 31 | */ |
||
| 32 | private $date; |
||
| 33 | |||
| 34 | public function getTransactionId(): ?string |
||
| 37 | } |
||
| 38 | |||
| 39 | public function getOrderId(): ?string |
||
| 42 | } |
||
| 43 | |||
| 44 | public function getDate(): ?string |
||
| 49 |