resultsPerPage = $resultsPerPage;
}
/**
* @return int
*/
public function getResultsPerPage()
{
return $this->resultsPerPage;
}
/**
* @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_YouTube_PageInfo');