Total Complexity | 12 |
Total Lines | 150 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class ActionUrls extends AbstractModel |
||
12 | { |
||
13 | /** |
||
14 | * @var string $confirm |
||
15 | */ |
||
16 | protected $confirm; |
||
17 | |||
18 | /** |
||
19 | * @var string $form |
||
20 | */ |
||
21 | protected $form; |
||
22 | |||
23 | /** |
||
24 | * @var string $instoreEmail |
||
25 | */ |
||
26 | protected $instoreEmail; |
||
27 | |||
28 | /** |
||
29 | * @var string $instoreSms |
||
30 | */ |
||
31 | protected $instoreSms; |
||
32 | |||
33 | /** |
||
34 | * @var string $refund |
||
35 | */ |
||
36 | protected $refund; |
||
37 | |||
38 | /** |
||
39 | * @var string $upsell |
||
40 | */ |
||
41 | protected $upsell; |
||
42 | |||
43 | /** |
||
44 | * @return string |
||
45 | */ |
||
46 | public function getConfirm() |
||
47 | { |
||
48 | return $this->confirm; |
||
49 | } |
||
50 | |||
51 | /** |
||
52 | * @param string $confirm |
||
53 | * |
||
54 | * @return $this |
||
55 | */ |
||
56 | public function setConfirm($confirm) |
||
57 | { |
||
58 | $this->confirm = $confirm; |
||
59 | |||
60 | return $this; |
||
61 | } |
||
62 | |||
63 | /** |
||
64 | * @return string |
||
65 | */ |
||
66 | public function getForm() |
||
67 | { |
||
68 | return $this->form; |
||
69 | } |
||
70 | |||
71 | /** |
||
72 | * @param string $form |
||
73 | * |
||
74 | * @return $this |
||
75 | */ |
||
76 | public function setForm($form) |
||
77 | { |
||
78 | $this->form = $form; |
||
79 | |||
80 | return $this; |
||
81 | } |
||
82 | |||
83 | /** |
||
84 | * @return string |
||
85 | */ |
||
86 | public function getInstoreEmail() |
||
87 | { |
||
88 | return $this->instoreEmail; |
||
89 | } |
||
90 | |||
91 | /** |
||
92 | * @param string $instoreEmail |
||
93 | * |
||
94 | * @return $this |
||
95 | */ |
||
96 | public function setInstoreEmail($instoreEmail) |
||
97 | { |
||
98 | $this->instoreEmail = $instoreEmail; |
||
99 | |||
100 | return $this; |
||
101 | } |
||
102 | |||
103 | /** |
||
104 | * @return string |
||
105 | */ |
||
106 | public function getInstoreSms() |
||
107 | { |
||
108 | return $this->instoreSms; |
||
109 | } |
||
110 | |||
111 | /** |
||
112 | * @param string $instoreSms |
||
113 | * |
||
114 | * @return $this |
||
115 | */ |
||
116 | public function setInstoreSms($instoreSms) |
||
117 | { |
||
118 | $this->instoreSms = $instoreSms; |
||
119 | |||
120 | return $this; |
||
121 | } |
||
122 | |||
123 | /** |
||
124 | * @return string |
||
125 | */ |
||
126 | public function getRefund() |
||
127 | { |
||
128 | return $this->refund; |
||
129 | } |
||
130 | |||
131 | /** |
||
132 | * @param string $refund |
||
133 | * |
||
134 | * @return $this |
||
135 | */ |
||
136 | public function setRefund($refund) |
||
137 | { |
||
138 | $this->refund = $refund; |
||
139 | |||
140 | return $this; |
||
141 | } |
||
142 | |||
143 | /** |
||
144 | * @return string |
||
145 | */ |
||
146 | public function getUpsell() |
||
147 | { |
||
148 | return $this->upsell; |
||
149 | } |
||
150 | |||
151 | /** |
||
152 | * @param string $upsell |
||
153 | * |
||
154 | * @return $this |
||
155 | */ |
||
156 | public function setUpsell($upsell) |
||
161 | } |
||
162 | } |
||
163 |