Total Complexity | 3 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | final class HolderAuthentication |
||
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 | /** |
||
30 | * @var string|null |
||
31 | * @SerializedName("Xid") |
||
32 | * @Type("string") |
||
33 | */ |
||
34 | private $xid; |
||
35 | |||
36 | public function getResult(): ?string |
||
39 | } |
||
40 | |||
41 | public function getMessage(): ?string |
||
44 | } |
||
45 | |||
46 | public function getXid(): ?string |
||
51 |