Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
8 | final class AuthenticationResult |
||
9 | { |
||
10 | const RESULT_OK = 'OK'; |
||
11 | const RESULT_NOT_SUPPORTED = 'NOT_SUPPORTED'; |
||
12 | |||
13 | /** |
||
14 | * @var string|null |
||
15 | * @SerializedName("Result") |
||
16 | * @Type("string") |
||
17 | */ |
||
18 | private $result; |
||
19 | |||
20 | /** |
||
21 | * @var string|null |
||
22 | * @SerializedName("Message") |
||
23 | * @Type("string") |
||
24 | */ |
||
25 | private $message; |
||
26 | |||
27 | public function getResult(): ?string |
||
28 | { |
||
29 | return $this->result; |
||
30 | } |
||
31 | |||
32 | public function getMessage(): ?string |
||
35 | } |
||
36 | } |
||
37 |