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