-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathAddressRequest.php
More file actions
43 lines (34 loc) · 1006 Bytes
/
AddressRequest.php
File metadata and controls
43 lines (34 loc) · 1006 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
declare(strict_types=1);
namespace Velhron\DadataBundle\Model\Request\Suggest;
class AddressRequest extends SuggestRequest
{
/**
* @var string На каком языке вернуть результат (ru / en)
*/
protected $language;
/**
* @var array Ограничение области поиска
*/
protected $locations;
/**
* @var array Ограничение по радиусу окружности
*/
protected $locations_geo;
/**
* @var array Приоритет города при ранжировании
*/
protected $locations_boost;
/**
* @var array Гранулярные подсказки по адресу
*/
protected $from_bound;
/**
* @var array Гранулярные подсказки по адресу
*/
protected $to_bound;
/**
* @var bool Гранулярные подсказки по адресу
*/
protected $restrict_value;
}