| Total Complexity | 3 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 8 | final class CheckResult |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string|null |
||
| 12 | * @SerializedName("Result") |
||
| 13 | * @Type("string") |
||
| 14 | */ |
||
| 15 | private $result; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var string|null |
||
| 19 | * @SerializedName("Message") |
||
| 20 | * @Type("string") |
||
| 21 | */ |
||
| 22 | private $message; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var HolderAuthentication|null |
||
| 26 | * @SerializedName("Authentication") |
||
| 27 | * @Type("Ticketpark\SaferpayJson\Container\HolderAuthentication") |
||
| 28 | */ |
||
| 29 | private $authentication; |
||
| 30 | |||
| 31 | public function getResult(): ?string |
||
| 34 | } |
||
| 35 | |||
| 36 | public function getMessage(): ?string |
||
| 37 | { |
||
| 38 | return $this->message; |
||
| 39 | } |
||
| 40 | |||
| 41 | public function getAuthentication(): ?HolderAuthentication |
||
| 44 | } |
||
| 45 | } |
||
| 46 |