Google_SearchSearchInformation
The Google Pagespeed Insights Google SearchSearchInformation class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_CustomsearchService.php
- class Google_SearchSearchInformation extends Google_Model {
- public $formattedSearchTime;
- public $formattedTotalResults;
- public $totalResults;
- public $searchTime;
- public function setFormattedSearchTime($formattedSearchTime) {
- $this->formattedSearchTime = $formattedSearchTime;
- }
- public function getFormattedSearchTime() {
- return $this->formattedSearchTime;
- }
- public function setFormattedTotalResults($formattedTotalResults) {
- $this->formattedTotalResults = $formattedTotalResults;
- }
- public function getFormattedTotalResults() {
- return $this->formattedTotalResults;
- }
- public function setTotalResults($totalResults) {
- $this->totalResults = $totalResults;
- }
- public function getTotalResults() {
- return $this->totalResults;
- }
- public function setSearchTime($searchTime) {
- $this->searchTime = $searchTime;
- }
- public function getSearchTime() {
- return $this->searchTime;
- }
- }