Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class SkillDisabledBody |
||
9 | { |
||
10 | const PERSISTED = 'PERSISTED'; |
||
11 | const NOT_PERSISTED = 'NOT_PERSISTED'; |
||
12 | |||
13 | /** |
||
14 | * @var string|null |
||
15 | */ |
||
16 | public $userInformationPersistenceStatus; |
||
17 | |||
18 | /** |
||
19 | * @param array $amazonRequest |
||
20 | * |
||
21 | * @return SkillDisabledBody |
||
22 | */ |
||
23 | public static function fromAmazonRequest(array $amazonRequest): self |
||
32 |