Google_PageInfo
The Google Books Importer Google PageInfo class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_YouTubeService.php
- class Google_PageInfo extends Google_Model {
- public $resultsPerPage;
- public $totalResults;
- public function setResultsPerPage( $resultsPerPage) {
- $this->resultsPerPage = $resultsPerPage;
- }
- public function getResultsPerPage() {
- return $this->resultsPerPage;
- }
- public function setTotalResults( $totalResults) {
- $this->totalResults = $totalResults;
- }
- public function getTotalResults() {
- return $this->totalResults;
- }
- }