1 | <?php |
||
9 | class AmountDetails extends AbstractModel |
||
10 | { |
||
11 | /** |
||
12 | * @JMS\Type("float") |
||
13 | * |
||
14 | * @var float |
||
15 | */ |
||
16 | protected $subtotal; |
||
17 | |||
18 | /** |
||
19 | * @JMS\Type("float") |
||
20 | * |
||
21 | * @var float |
||
22 | */ |
||
23 | protected $tax; |
||
24 | |||
25 | /** |
||
26 | * @JMS\Type("float") |
||
27 | * |
||
28 | * @var float |
||
29 | */ |
||
30 | protected $shipping; |
||
31 | |||
32 | /** |
||
33 | * @return float |
||
34 | */ |
||
35 | public function getShipping() |
||
39 | |||
40 | /** |
||
41 | * @param float $shipping |
||
42 | */ |
||
43 | public function setShipping($shipping) |
||
47 | |||
48 | /** |
||
49 | * @return float |
||
50 | */ |
||
51 | public function getSubtotal() |
||
55 | |||
56 | /** |
||
57 | * @param float $subtotal |
||
58 | */ |
||
59 | public function setSubtotal($subtotal) |
||
63 | |||
64 | /** |
||
65 | * @return float |
||
66 | */ |
||
67 | public function getTax() |
||
71 | |||
72 | /** |
||
73 | * @param float $tax |
||
74 | */ |
||
75 | public function setTax($tax) |
||
79 | } |
||
80 |