3 declare(strict_types=1);
78 if (is_null($this->limit)) {
80 $data = $this->
raw(self::FIELD_LIMIT);
84 $this->limit = (int) $data;
99 if (is_null($this->offset)) {
101 $data = $this->
raw(self::FIELD_OFFSET);
102 if (is_null($data)) {
105 $this->offset = (int) $data;
119 if (is_null($this->count)) {
121 $data = $this->
raw(self::FIELD_COUNT);
122 if (is_null($data)) {
125 $this->count = (int) $data;
143 if (is_null($this->total)) {
145 $data = $this->
raw(self::FIELD_TOTAL);
146 if (is_null($data)) {
149 $this->total = (int) $data;
163 if (is_null($this->results)) {
165 $data = $this->
raw(self::FIELD_RESULTS);
166 if (is_null($data)) {
setResults(?AttributeGroupCollection $results)
__construct(?int $limit=null, ?int $offset=null, ?int $count=null, ?int $total=null, ?AttributeGroupCollection $results=null)