Total Complexity | 4 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | final class Check |
||
10 | { |
||
11 | public const TYPE_ONLINE = 'ONLINE'; |
||
12 | public const TYPE_ONLINE_STRONG = 'ONLINE_STRONG'; |
||
13 | |||
14 | /** |
||
15 | * @var string|null |
||
16 | * @SerializedName("Type") |
||
17 | */ |
||
18 | private $type; |
||
19 | |||
20 | /** |
||
21 | * @var string|null |
||
22 | * @SerializedName("TerminalId") |
||
23 | */ |
||
24 | private $terminalId; |
||
25 | |||
26 | public function getType(): ?string |
||
27 | { |
||
28 | return $this->type; |
||
29 | } |
||
30 | |||
31 | public function setType(?string $type): self |
||
32 | { |
||
33 | $this->type = $type; |
||
34 | |||
35 | return $this; |
||
36 | } |
||
37 | |||
38 | public function getTerminalId(): ?string |
||
41 | } |
||
42 | |||
43 | public function setTerminalId(?string $terminalId): self |
||
50 |