| 1 | <?php |
||
| 7 | class SearchRequestParams extends Model |
||
| 8 | { |
||
| 9 | protected $text = null; |
||
| 10 | |||
| 11 | protected $actualText = null; |
||
| 12 | |||
| 13 | protected $checkSpelling = null; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Retrieve the text property |
||
| 17 | * |
||
| 18 | * @return string|null |
||
| 19 | */ |
||
| 20 | 1 | public function getText() |
|
| 24 | |||
| 25 | /** |
||
| 26 | * Retrieve the actualText property |
||
| 27 | * |
||
| 28 | * @return string|null |
||
| 29 | */ |
||
| 30 | 1 | public function getActualText() |
|
| 34 | |||
| 35 | /** |
||
| 36 | * Retrieve the checkSpelling property |
||
| 37 | * |
||
| 38 | * @return bool|null |
||
| 39 | */ |
||
| 40 | 1 | public function getCheckSpelling() |
|
| 44 | } |
||
| 45 |