1 | <?php |
||
10 | class Item extends BaseItem |
||
11 | { |
||
12 | /** |
||
13 | * Get the item reference (acccount code) |
||
14 | */ |
||
15 | public function getReference() |
||
19 | |||
20 | /** |
||
21 | * Set the item reference (acccount code) |
||
22 | */ |
||
23 | public function setReference($value) |
||
27 | |||
28 | /** |
||
29 | * Get the item additional reference |
||
30 | */ |
||
31 | public function getAdditionalReference() |
||
35 | |||
36 | /** |
||
37 | * Set the item additional reference |
||
38 | */ |
||
39 | public function setAdditionalReference($value) |
||
43 | |||
44 | /** |
||
45 | * Get the item fund code |
||
46 | */ |
||
47 | public function getFundCode() |
||
51 | |||
52 | /** |
||
53 | * Set the item fund code |
||
54 | */ |
||
55 | public function setFundCode($value) |
||
59 | |||
60 | /** |
||
61 | * Get the item narrative |
||
62 | */ |
||
63 | public function getNarrative() |
||
67 | |||
68 | /** |
||
69 | * Set the item narrative |
||
70 | */ |
||
71 | public function setNarrative($value) |
||
75 | } |
||
76 |