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) |
||
65 | |||
66 | /** |
||
67 | * @return bool |
||
68 | */ |
||
69 | public function getDcrIndicator() |
||
73 | |||
74 | /** |
||
75 | * @param bool $dcrIndicator |
||
76 | */ |
||
77 | public function setDcrIndicator($dcrIndicator) |
||
81 | |||
82 | /** |
||
83 | * @return bool |
||
84 | */ |
||
85 | public function getShippingAvailabilityIndicator() |
||
89 | |||
90 | /** |
||
91 | * @param bool $shippingAvailabilityIndicator |
||
92 | */ |
||
93 | public function setShippingAvailabilityIndicator($shippingAvailabilityIndicator) |
||
97 | |||
98 | /** |
||
99 | * @return int |
||
100 | */ |
||
101 | public function getShipperPreparationDelay() |
||
105 | |||
106 | /** |
||
107 | * @param int $shipperPreparationDelay |
||
108 | */ |
||
109 | public function setShipperPreparationDelay($shipperPreparationDelay) |
||
113 | |||
114 | /** |
||
115 | * @return string |
||
116 | */ |
||
117 | public function getClickAndCollectSortWithDistance() |
||
121 | |||
122 | /** |
||
123 | * @param string $clickAndCollectSortWithDistance |
||
124 | */ |
||
125 | public function setClickAndCollectSortWithDistance($clickAndCollectSortWithDistance) |
||
129 | } |