File tree Expand file tree Collapse file tree 2 files changed +79
-0
lines changed Expand file tree Collapse file tree 2 files changed +79
-0
lines changed Original file line number Diff line number Diff line change 208
208
require __DIR__ . '/model/AvailablePaymentMethod.php ' ;
209
209
require __DIR__ . '/model/PaymentMethodTypeItem.php ' ;
210
210
require __DIR__ . '/model/AgreementInfo.php ' ;
211
+ require __DIR__ . '/model/Discount.php ' ;
211
212
212
213
213
214
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Model ;
4
+
5
+ class Discount
6
+ {
7
+ public $ discountTag ;
8
+ public $ discountName ;
9
+ public $ savingsAmount ;
10
+ public $ estimateSavingsAmount ;
11
+
12
+ /**
13
+ * @return mixed
14
+ */
15
+ public function getDiscountTag ()
16
+ {
17
+ return $ this ->discountTag ;
18
+ }
19
+
20
+ /**
21
+ * @param mixed $discountTag
22
+ */
23
+ public function setDiscountTag ($ discountTag )
24
+ {
25
+ $ this ->discountTag = $ discountTag ;
26
+ }
27
+
28
+ /**
29
+ * @return mixed
30
+ */
31
+ public function getDiscountName ()
32
+ {
33
+ return $ this ->discountName ;
34
+ }
35
+
36
+ /**
37
+ * @param mixed $discountName
38
+ */
39
+ public function setDiscountName ($ discountName )
40
+ {
41
+ $ this ->discountName = $ discountName ;
42
+ }
43
+
44
+ /**
45
+ * @return mixed
46
+ */
47
+ public function getSavingsAmount ()
48
+ {
49
+ return $ this ->savingsAmount ;
50
+ }
51
+
52
+ /**
53
+ * @param mixed $savingsAmount
54
+ */
55
+ public function setSavingsAmount ($ savingsAmount )
56
+ {
57
+ $ this ->savingsAmount = $ savingsAmount ;
58
+ }
59
+
60
+ /**
61
+ * @return mixed
62
+ */
63
+ public function getEstimateSavingsAmount ()
64
+ {
65
+ return $ this ->estimateSavingsAmount ;
66
+ }
67
+
68
+ /**
69
+ * @param mixed $estimateSavingsAmount
70
+ */
71
+ public function setEstimateSavingsAmount ($ estimateSavingsAmount )
72
+ {
73
+ $ this ->estimateSavingsAmount = $ estimateSavingsAmount ;
74
+ }
75
+
76
+
77
+
78
+ }
You can’t perform that action at this time.
0 commit comments