commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
OrderPagedSearchResponse.php
1<?php
2
3declare(strict_types=1);
10
13
15{
16 public const FIELD_TOTAL = 'total';
17 public const FIELD_OFFSET = 'offset';
18 public const FIELD_LIMIT = 'limit';
19 public const FIELD_HITS = 'hits';
20
27 public function getTotal();
28
35 public function getOffset();
36
43 public function getLimit();
44
51 public function getHits();
52
56 public function setTotal(?int $total): void;
57
61 public function setOffset(?int $offset): void;
62
66 public function setLimit(?int $limit): void;
67
71 public function setHits(?HitCollection $hits): void;
72}