1 | <?php |
||
5 | class LandedCostRequest |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * @var QueryRequest |
||
10 | */ |
||
11 | private $queryRequest; |
||
12 | |||
13 | /** |
||
14 | * @var mixed |
||
15 | */ |
||
16 | private $estimateRequest; |
||
17 | |||
18 | /** |
||
19 | * @return QueryRequest |
||
20 | */ |
||
21 | public function getQueryRequest() |
||
22 | { |
||
23 | return $this->queryRequest; |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @param QueryRequest $queryRequest |
||
28 | * @return LandedCostRequest |
||
29 | */ |
||
30 | public function setQueryRequest($queryRequest) |
||
31 | { |
||
32 | $this->queryRequest = $queryRequest; |
||
33 | |||
34 | return $this; |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @return mixed |
||
39 | */ |
||
40 | public function getEstimateRequest() |
||
44 | |||
45 | /** |
||
46 | * @param mixed $estimateRequest |
||
47 | * |
||
48 | * @return LandedCostRequest |
||
49 | */ |
||
50 | public function setEstimateRequest($estimateRequest) |
||
56 | } |
||
57 |