1 | <?php |
||
14 | class ShipmentServiceOptions implements NodeInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var |
||
18 | */ |
||
19 | public $SaturdayPickup; |
||
20 | |||
21 | /** |
||
22 | * @var |
||
23 | */ |
||
24 | public $SaturdayDelivery; |
||
25 | |||
26 | /** |
||
27 | * @var |
||
28 | */ |
||
29 | public $COD; |
||
30 | |||
31 | /** |
||
32 | * @var CallTagARS |
||
33 | */ |
||
34 | public $CallTagARS; |
||
35 | |||
36 | /** |
||
37 | * @var |
||
38 | */ |
||
39 | public $NegotiatedRatesIndicator; |
||
40 | |||
41 | /** |
||
42 | * @var |
||
43 | */ |
||
44 | public $DirectDeliveryOnlyIndicator; |
||
45 | |||
46 | /** |
||
47 | * @var |
||
48 | */ |
||
49 | public $DeliverToAddresseeOnlyIndicator; |
||
50 | |||
51 | /** |
||
52 | * @var |
||
53 | */ |
||
54 | private $internationalForms; |
||
55 | |||
56 | /** |
||
57 | * @var array |
||
58 | */ |
||
59 | private $notifications = []; |
||
60 | |||
61 | /** |
||
62 | * @param null $response |
||
63 | */ |
||
64 | 1 | public function __construct($response = null) |
|
95 | |||
96 | /** |
||
97 | * @param null|DOMDocument $document |
||
98 | * |
||
99 | * @return DOMElement |
||
100 | */ |
||
101 | public function toNode(DOMDocument $document = null) |
||
141 | |||
142 | /** |
||
143 | * @param InternationalForms $data |
||
144 | */ |
||
145 | public function setInternationalForms(InternationalForms $data) |
||
149 | |||
150 | /** |
||
151 | * @return mixed |
||
152 | */ |
||
153 | public function getInternationalForms() |
||
157 | |||
158 | /** |
||
159 | * @param Notification $notification |
||
160 | * |
||
161 | * @throws \Exception |
||
162 | * |
||
163 | * @return $this |
||
164 | */ |
||
165 | public function addNotification(Notification $notification) |
||
175 | |||
176 | /** |
||
177 | * @return array |
||
178 | */ |
||
179 | public function getNotifications() |
||
183 | |||
184 | /** |
||
185 | * @return mixed |
||
186 | */ |
||
187 | public function getSaturdayPickup() |
||
191 | |||
192 | /** |
||
193 | * @param mixed $SaturdayPickup |
||
194 | * @return ShipmentServiceOptions |
||
195 | */ |
||
196 | public function setSaturdayPickup($SaturdayPickup) |
||
201 | |||
202 | /** |
||
203 | * @return mixed |
||
204 | */ |
||
205 | public function getSaturdayDelivery() |
||
209 | |||
210 | /** |
||
211 | * @param mixed $SaturdayDelivery |
||
212 | * @return ShipmentServiceOptions |
||
213 | */ |
||
214 | public function setSaturdayDelivery($SaturdayDelivery) |
||
219 | |||
220 | /** |
||
221 | * @return mixed |
||
222 | */ |
||
223 | public function getCOD() |
||
227 | |||
228 | /** |
||
229 | * @param mixed $COD |
||
230 | * @return ShipmentServiceOptions |
||
231 | */ |
||
232 | public function setCOD($COD) |
||
237 | |||
238 | |||
239 | /** |
||
240 | * @return CallTagARS |
||
241 | */ |
||
242 | public function getCallTagARS() |
||
246 | |||
247 | /** |
||
248 | * @param CallTagARS $CallTagARS |
||
249 | * @return ShipmentServiceOptions |
||
250 | */ |
||
251 | public function setCallTagARS($CallTagARS) |
||
256 | |||
257 | /** |
||
258 | * @return boolean |
||
259 | */ |
||
260 | public function isNegotiatedRatesIndicator() |
||
264 | |||
265 | /** |
||
266 | * @param boolean $NegotiatedRatesIndicator |
||
267 | * @return ShipmentServiceOptions |
||
268 | */ |
||
269 | public function setNegotiatedRatesIndicator($NegotiatedRatesIndicator) |
||
274 | |||
275 | /** |
||
276 | * @return boolean |
||
277 | */ |
||
278 | public function isDirectDeliveryOnlyIndicator() |
||
282 | |||
283 | /** |
||
284 | * @param boolean $DirectDeliveryOnlyIndicator |
||
285 | * @return ShipmentServiceOptions |
||
286 | */ |
||
287 | public function setDirectDeliveryOnlyIndicator($DirectDeliveryOnlyIndicator) |
||
292 | |||
293 | /** |
||
294 | * @return mixed |
||
295 | */ |
||
296 | public function getDeliverToAddresseeOnlyIndicator() |
||
300 | |||
301 | /** |
||
302 | * @param mixed $DeliverToAddresseeOnlyIndicator |
||
303 | * @return ShipmentServiceOptions |
||
304 | */ |
||
305 | public function setDeliverToAddresseeOnlyIndicator($DeliverToAddresseeOnlyIndicator) |
||
310 | } |
||
311 |