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