1 | <?php |
||
6 | class ChargesRecord |
||
7 | { |
||
8 | |||
9 | /** @var Money */ |
||
10 | private $amount; |
||
11 | |||
12 | /** |
||
13 | * @var bool |
||
14 | */ |
||
15 | private $chargesIncludedIndicator = false; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $identification; |
||
21 | |||
22 | |||
23 | /** |
||
24 | * @return Money |
||
25 | */ |
||
26 | public function getAmount() |
||
30 | |||
31 | /** |
||
32 | * @param Money $money |
||
33 | */ |
||
34 | 4 | public function setAmount(Money $money) |
|
38 | |||
39 | /** |
||
40 | * @return ChargesIncludedIndicator |
||
41 | */ |
||
42 | public function getChargesIncludedIndicator() |
||
46 | |||
47 | /** |
||
48 | * @param $chargesIncludedIndicator |
||
49 | */ |
||
50 | public function setChargesIncludedIndicator($chargesIncludedIndicator) |
||
54 | |||
55 | /** |
||
56 | * @return Identification |
||
57 | */ |
||
58 | public function getIdentification() |
||
62 | |||
63 | /** |
||
64 | * @param $identification |
||
65 | */ |
||
66 | 4 | public function setIdentification($identification) |
|
70 | |||
71 | } |
||
72 |