1 | <?php |
||
7 | final class FacadeDocListV2Response |
||
8 | { |
||
9 | /** |
||
10 | * @var int |
||
11 | */ |
||
12 | private $total; |
||
13 | /** |
||
14 | * @var FacadeDocListV2ItemResponse[] |
||
15 | */ |
||
16 | private $results; |
||
17 | |||
18 | /** |
||
19 | * @param int $total |
||
20 | * @param FacadeDocListV2ItemResponse[] $results |
||
21 | */ |
||
22 | public function __construct(int $total, array $results = []) |
||
27 | |||
28 | public function getTotal(): int |
||
32 | |||
33 | /** |
||
34 | * @return FacadeDocListV2ItemResponse[] |
||
35 | */ |
||
36 | public function getResults(): array |
||
40 | } |
||
41 |