1 | <?php |
||
10 | trait InvoiceVatItemTrait |
||
11 | { |
||
12 | /** |
||
13 | * The invoice item vat percent. |
||
14 | * |
||
15 | * @var string |
||
16 | * |
||
17 | * @JMS\Type("string") |
||
18 | * @JMS\SerializedName("VAT_PERCENT") |
||
19 | */ |
||
20 | protected $vatPercent; |
||
21 | |||
22 | /** |
||
23 | * The invoice item vat value. |
||
24 | * |
||
25 | * @var string |
||
26 | * |
||
27 | * @JMS\Type("string") |
||
28 | * @JMS\SerializedName("VAT_VALUE") |
||
29 | */ |
||
30 | protected $vatValue; |
||
31 | |||
32 | /** |
||
33 | * The invoice item complete net value. |
||
34 | * |
||
35 | * @var string |
||
36 | * |
||
37 | * @JMS\Type("string") |
||
38 | * @JMS\SerializedName("COMPLETE_NET") |
||
39 | */ |
||
40 | protected $completeNet; |
||
41 | |||
42 | /** |
||
43 | * Get the VAT percent. |
||
44 | * |
||
45 | * @return string |
||
46 | */ |
||
47 | public function getVatPercent() |
||
51 | |||
52 | /** |
||
53 | * Set the VAT percent. |
||
54 | * |
||
55 | * @param string $vatPercent |
||
56 | */ |
||
57 | 6 | public function setVatPercent($vatPercent) |
|
61 | |||
62 | /** |
||
63 | * Get the VAT value. |
||
64 | * |
||
65 | * @return string |
||
66 | */ |
||
67 | public function getVatValue() |
||
71 | |||
72 | /** |
||
73 | * Set the VAT value. |
||
74 | * |
||
75 | * @param string $vatValue |
||
76 | */ |
||
77 | 6 | public function setVatValue($vatValue) |
|
81 | |||
82 | /** |
||
83 | * Get the complete net value. |
||
84 | * |
||
85 | * @return string |
||
86 | */ |
||
87 | public function getCompleteNet() |
||
91 | |||
92 | /** |
||
93 | * Set the complete net value. |
||
94 | * |
||
95 | * @param string $completeNet |
||
96 | */ |
||
97 | 6 | public function setCompleteNet($completeNet) |
|
101 | } |
||
102 |