3 declare(strict_types=1);
78 if (is_null($this->limit)) {
80 $data = $this->
raw(self::FIELD_LIMIT);
84 $this->limit = (int) $data;
98 if (is_null($this->offset)) {
100 $data = $this->
raw(self::FIELD_OFFSET);
101 if (is_null($data)) {
104 $this->offset = (int) $data;
118 if (is_null($this->count)) {
120 $data = $this->
raw(self::FIELD_COUNT);
121 if (is_null($data)) {
124 $this->count = (int) $data;
138 if (is_null($this->total)) {
140 $data = $this->
raw(self::FIELD_TOTAL);
141 if (is_null($data)) {
144 $this->total = (int) $data;
158 if (is_null($this->results)) {
160 $data = $this->
raw(self::FIELD_RESULTS);
161 if (is_null($data)) {
__construct(?int $limit=null, ?int $offset=null, ?int $count=null, ?int $total=null, ?ImportContainerCollection $results=null)
setResults(?ImportContainerCollection $results)