1 | <?php |
||
8 | class CollectionApiResponse extends ApiResponse |
||
9 | { |
||
10 | |||
11 | const DEFAULT_LIMIT = 50; |
||
12 | |||
13 | /** @var int */ |
||
14 | private $total; |
||
15 | |||
16 | /** @var int */ |
||
17 | private $limit; |
||
18 | |||
19 | /** @var int */ |
||
20 | private $offset; |
||
21 | |||
22 | 8 | public function __construct($data, int $httpCode, int $total, int $limit = 50, int $offset = 0) |
|
30 | } |
||
31 |