1 | <?php |
||
12 | class Item extends \Omnipay\Common\Item implements ItemInterface |
||
13 | { |
||
14 | /** |
||
15 | * ID of the item |
||
16 | * |
||
17 | * @return string |
||
18 | */ |
||
19 | 10 | public function getId() |
|
23 | |||
24 | /** |
||
25 | * Price of the item (net amount, excluding taxes) |
||
26 | * |
||
27 | * @return string |
||
28 | */ |
||
29 | 10 | public function getPriceNet() |
|
33 | |||
34 | /** |
||
35 | * Sets the ID of the item |
||
36 | * |
||
37 | * @param string $value |
||
38 | * |
||
39 | * @return Item |
||
40 | */ |
||
41 | 48 | public function setId($value) |
|
45 | |||
46 | /** |
||
47 | * Sets the price of the item (net amount, excluding taxes) |
||
48 | * |
||
49 | * @param string $value |
||
50 | * |
||
51 | * @return string |
||
52 | */ |
||
53 | 48 | public function setPriceNet($value) |
|
57 | } |
||
58 |