commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
ReviewPagedQueryResponseBuilder.php
1<?php
2
3declare(strict_types=1);
10
16use stdClass;
17
22{
27 private $limit;
28
33 private $count;
34
39 private $total;
40
45 private $offset;
46
51 private $results;
52
59 public function getLimit()
60 {
61 return $this->limit;
62 }
63
70 public function getCount()
71 {
72 return $this->count;
73 }
74
85 public function getTotal()
86 {
87 return $this->total;
88 }
89
96 public function getOffset()
97 {
98 return $this->offset;
99 }
100
107 public function getResults()
108 {
109 return $this->results;
110 }
111
116 public function withLimit(?int $limit)
117 {
118 $this->limit = $limit;
119
120 return $this;
121 }
122
127 public function withCount(?int $count)
128 {
129 $this->count = $count;
130
131 return $this;
132 }
133
138 public function withTotal(?int $total)
139 {
140 $this->total = $total;
141
142 return $this;
143 }
144
149 public function withOffset(?int $offset)
150 {
151 $this->offset = $offset;
152
153 return $this;
154 }
155
160 public function withResults(?ReviewCollection $results)
161 {
162 $this->results = $results;
163
164 return $this;
165 }
166
167
169 {
171 $this->limit,
172 $this->count,
173 $this->total,
174 $this->offset,
175 $this->results
176 );
177 }
178
179 public static function of(): ReviewPagedQueryResponseBuilder
180 {
181 return new self();
182 }
183}