1 | <?php |
||
10 | class SearchFilter implements NodeInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var bool |
||
14 | */ |
||
15 | private $dcrIndicator; |
||
16 | |||
17 | /** |
||
18 | * @var bool |
||
19 | */ |
||
20 | private $shippingAvailabilityIndicator; |
||
21 | |||
22 | /** |
||
23 | * @var int |
||
24 | */ |
||
25 | private $shipperPreparationDelay; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | private $clickAndCollectSortWithDistance; |
||
31 | |||
32 | /** |
||
33 | * @param null|DOMDocument $document |
||
34 | * |
||
35 | * @return DOMNode |
||
36 | */ |
||
37 | public function toNode(DOMDocument $document = null) |
||
66 | |||
67 | /** |
||
68 | * @return bool |
||
69 | */ |
||
70 | public function getDcrIndicator() |
||
74 | |||
75 | /** |
||
76 | * @param bool $dcrIndicator |
||
77 | */ |
||
78 | public function setDcrIndicator($dcrIndicator) |
||
82 | |||
83 | /** |
||
84 | * @return bool |
||
85 | */ |
||
86 | public function getShippingAvailabilityIndicator() |
||
90 | |||
91 | /** |
||
92 | * @param bool $shippingAvailabilityIndicator |
||
93 | */ |
||
94 | public function setShippingAvailabilityIndicator($shippingAvailabilityIndicator) |
||
98 | |||
99 | /** |
||
100 | * @return int |
||
101 | */ |
||
102 | public function getShipperPreparationDelay() |
||
106 | |||
107 | /** |
||
108 | * @param int $shipperPreparationDelay |
||
109 | */ |
||
110 | public function setShipperPreparationDelay($shipperPreparationDelay) |
||
114 | |||
115 | /** |
||
116 | * @return string |
||
117 | */ |
||
118 | public function getClickAndCollectSortWithDistance() |
||
122 | |||
123 | /** |
||
124 | * @param string $clickAndCollectSortWithDistance |
||
125 | */ |
||
126 | public function setClickAndCollectSortWithDistance($clickAndCollectSortWithDistance) |
||
130 | |||
131 | } |