commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
AttributeGroupPagedQueryResponse.php
1<?php
2
3declare(strict_types=1);
10
13
15{
16 public const FIELD_LIMIT = 'limit';
17 public const FIELD_OFFSET = 'offset';
18 public const FIELD_COUNT = 'count';
19 public const FIELD_TOTAL = 'total';
20 public const FIELD_RESULTS = 'results';
21
28 public function getLimit();
29
37 public function getOffset();
38
45 public function getCount();
46
57 public function getTotal();
58
65 public function getResults();
66
70 public function setLimit(?int $limit): void;
71
75 public function setOffset(?int $offset): void;
76
80 public function setCount(?int $count): void;
81
85 public function setTotal(?int $total): void;
86
90 public function setResults(?AttributeGroupCollection $results): void;
91}