resultPerPage = $resultPerPage; } /** * @return int */ public function getResultPerPage() { return $this->resultPerPage; } /** * Index of the first result returned in the current page. * * @param int $startIndex */ public function setStartIndex($startIndex) { $this->startIndex = $startIndex; } /** * @return int */ public function getStartIndex() { return $this->startIndex; } /** * Total number of results available on the backend ! The total number of * results in the result set. * * @param int $totalResults */ public function setTotalResults($totalResults) { $this->totalResults = $totalResults; } /** * @return int */ public function getTotalResults() { return $this->totalResults; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PageInfo::class, 'Google_Service_AndroidEnterprise_PageInfo');