| Total Complexity | 1 | 
| Total Lines | 17 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php declare(strict_types=1);  | 
            ||
| 7 | final class FraudPrevention  | 
            ||
| 8 | { | 
            ||
| 9 | const APPROVED = 'APPROVED';  | 
            ||
| 10 | const MANUAL_REVIEW = 'MANUAL_REVIEW';  | 
            ||
| 11 | |||
| 12 | /**  | 
            ||
| 13 | * @var string|null  | 
            ||
| 14 |      * @SerializedName("Result") | 
            ||
| 15 | */  | 
            ||
| 16 | private $result;  | 
            ||
| 17 | |||
| 18 | /**  | 
            ||
| 19 | * @return string|null  | 
            ||
| 20 | */  | 
            ||
| 21 | public function getResult(): ?string  | 
            ||
| 24 | }  | 
            ||
| 25 | }  |