Google_QueryRequest
The Google Pagespeed Insights Google QueryRequest class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_BigqueryService.php
- class Google_QueryRequest extends Google_Model {
- public $timeoutMs;
- public $kind;
- public $dryRun;
- protected $__defaultDatasetType = 'Google_DatasetReference';
- protected $__defaultDatasetDataType = '';
- public $defaultDataset;
- public $maxResults;
- public $query;
- public function setTimeoutMs($timeoutMs) {
- $this->timeoutMs = $timeoutMs;
- }
- public function getTimeoutMs() {
- return $this->timeoutMs;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setDryRun($dryRun) {
- $this->dryRun = $dryRun;
- }
- public function getDryRun() {
- return $this->dryRun;
- }
- public function setDefaultDataset(Google_DatasetReference $defaultDataset) {
- $this->defaultDataset = $defaultDataset;
- }
- public function getDefaultDataset() {
- return $this->defaultDataset;
- }
- public function setMaxResults($maxResults) {
- $this->maxResults = $maxResults;
- }
- public function getMaxResults() {
- return $this->maxResults;
- }
- public function setQuery($query) {
- $this->query = $query;
- }
- public function getQuery() {
- return $this->query;
- }
- }