| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 8 | final class Error |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string|null |
||
| 12 | * @SerializedName("ErrorName") |
||
| 13 | * @Type("string") |
||
| 14 | */ |
||
| 15 | private $errorName; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var string|null |
||
| 19 | * @SerializedName("ErrorMessage") |
||
| 20 | * @Type("string") |
||
| 21 | */ |
||
| 22 | private $errorMessage; |
||
| 23 | |||
| 24 | public function getErrorName(): ?string |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getErrorMessage(): ?string |
||
| 34 |