commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
CartDiscountPagedQueryResponse.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
36 public function getOffset();
37
44 public function getCount();
45
56 public function getTotal();
57
64 public function getResults();
65
69 public function setLimit(?int $limit): void;
70
74 public function setOffset(?int $offset): void;
75
79 public function setCount(?int $count): void;
80
84 public function setTotal(?int $total): void;
85
89 public function setResults(?CartDiscountCollection $results): void;
90}