| 1 | <?php |
||
| 5 | class LocatorRequest |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var |
||
| 9 | */ |
||
| 10 | private $originAddress; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var |
||
| 14 | */ |
||
| 15 | private $translate; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var LocationSearchCriteria |
||
| 19 | */ |
||
| 20 | private $locationSearchCriteria; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var |
||
| 24 | */ |
||
| 25 | private $unitOfMeasurement; |
||
| 26 | |||
| 27 | 4 | public function __construct() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @return LocationSearchCriteria |
||
| 35 | */ |
||
| 36 | 3 | public function getLocationSearchCriteria() |
|
| 40 | |||
| 41 | /** |
||
| 42 | * @param LocationSearchCriteria $locationSearchCriteria |
||
| 43 | */ |
||
| 44 | 2 | public function setLocationSearchCriteria($locationSearchCriteria) |
|
| 45 | { |
||
| 46 | 2 | $this->locationSearchCriteria = $locationSearchCriteria; |
|
| 47 | 2 | } |
|
| 48 | |||
| 49 | /** |
||
| 50 | * @return mixed |
||
| 51 | */ |
||
| 52 | 3 | public function getOriginAddress() |
|
| 56 | |||
| 57 | /** |
||
| 58 | * @param mixed $originAddress |
||
| 59 | */ |
||
| 60 | 4 | public function setOriginAddress(OriginAddress $originAddress) |
|
| 64 | |||
| 65 | /** |
||
| 66 | * @return mixed |
||
| 67 | */ |
||
| 68 | 3 | public function getTranslate() |
|
| 72 | |||
| 73 | /** |
||
| 74 | * @param mixed $translate |
||
| 75 | */ |
||
| 76 | 4 | public function setTranslate(Translate $translate) |
|
| 80 | |||
| 81 | /** |
||
| 82 | * @return mixed |
||
| 83 | */ |
||
| 84 | 3 | public function getUnitOfMeasurement() |
|
| 88 | |||
| 89 | /** |
||
| 90 | * @param mixed $unitOfMeasurement |
||
| 91 | */ |
||
| 92 | 3 | public function setUnitOfMeasurement(UnitOfMeasurement $unitOfMeasurement) |
|
| 96 | } |
||
| 97 |