1 | <?php |
||
14 | final class ThresholdReason implements CreatableFromArray |
||
15 | { |
||
16 | /** |
||
17 | * @var int |
||
18 | */ |
||
19 | private $amountGte; |
||
20 | |||
21 | /** |
||
22 | * @var array |
||
23 | */ |
||
24 | private $itemReasons; |
||
25 | |||
26 | public static function createFromArray(array $data): self |
||
39 | |||
40 | public function getAmountGte(): int |
||
44 | |||
45 | public function getItemReasons(): array |
||
49 | } |
||
50 |