1 | <?php |
||
7 | class SelectRequest implements Request |
||
8 | { |
||
9 | private $spaceId; |
||
10 | private $indexId; |
||
11 | private $key; |
||
12 | private $offset; |
||
13 | private $limit; |
||
14 | private $iterator; |
||
15 | |||
16 | 32 | public function __construct($spaceId, $indexId, array $key, $offset, $limit, $iterator) |
|
25 | |||
26 | 32 | public function getType() |
|
30 | |||
31 | 32 | public function getBody() |
|
42 | } |
||
43 |