Total Complexity | 3 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
8 | final class HolderAuthentication |
||
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 | /** |
||
28 | * @var string|null |
||
29 | * @SerializedName("Xid") |
||
30 | * @Type("string") |
||
31 | */ |
||
32 | private $xid; |
||
33 | |||
34 | public function getResult(): ?string |
||
37 | } |
||
38 | |||
39 | public function getMessage(): ?string |
||
42 | } |
||
43 | |||
44 | public function getXid(): ?string |
||
49 |