| 1 | <?php |
||
| 17 | class PlaceAutocompleteTerm |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var string|null |
||
| 21 | */ |
||
| 22 | private $value; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var int|null |
||
| 26 | */ |
||
| 27 | private $offset; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return bool |
||
| 31 | */ |
||
| 32 | public function hasValue() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return string|null |
||
| 39 | */ |
||
| 40 | public function getValue() |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @param string|null $value |
||
| 47 | */ |
||
| 48 | public function setValue($value) |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @return bool |
||
| 55 | */ |
||
| 56 | public function hasOffset() |
||
| 60 | |||
| 61 | /** |
||
| 62 | * @return int|null |
||
| 63 | */ |
||
| 64 | public function getOffset() |
||
| 68 | |||
| 69 | /** |
||
| 70 | * @param int|null $offset |
||
| 71 | */ |
||
| 72 | public function setOffset($offset) |
||
| 76 | } |
||
| 77 |