Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
8 | final class Amount |
||
9 | { |
||
10 | /** |
||
11 | * @var int |
||
12 | * @SerializedName("Value") |
||
13 | * @Type("integer") |
||
14 | */ |
||
15 | private $value; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | * @SerializedName("CurrencyCode") |
||
20 | * @Type("string") |
||
21 | */ |
||
22 | private $currencyCode; |
||
23 | |||
24 | public function getValue(): int |
||
27 | } |
||
28 | |||
29 | public function getCurrencyCode(): string |
||
34 |