resultPerPage = $resultPerPage; } /** * @return int */ public function getResultPerPage() { return $this->resultPerPage; } /** * @param int */ public function setStartIndex($startIndex) { $this->startIndex = $startIndex; } /** * @return int */ public function getStartIndex() { return $this->startIndex; } /** * @param int */ 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');