commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
ShippingMethodPagedQueryResponse.php
1 <?php
2 
3 declare(strict_types=1);
10 
13 
15 {
16  public const FIELD_LIMIT = 'limit';
17  public const FIELD_COUNT = 'count';
18  public const FIELD_TOTAL = 'total';
19  public const FIELD_OFFSET = 'offset';
20  public const FIELD_RESULTS = 'results';
21 
28  public function getLimit();
29 
36  public function getCount();
37 
48  public function getTotal();
49 
56  public function getOffset();
57 
64  public function getResults();
65 
69  public function setLimit(?int $limit): void;
70 
74  public function setCount(?int $count): void;
75 
79  public function setTotal(?int $total): void;
80 
84  public function setOffset(?int $offset): void;
85 
89  public function setResults(?ShippingMethodCollection $results): void;
90 }