Google_QueryResponse
The Google Pagespeed Insights Google QueryResponse class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_BigqueryService.php
- class Google_QueryResponse extends Google_Model {
- public $kind;
- protected $__rowsType = 'Google_TableRow';
- protected $__rowsDataType = 'array';
- public $rows;
- protected $__jobReferenceType = 'Google_JobReference';
- protected $__jobReferenceDataType = '';
- public $jobReference;
- public $jobComplete;
- public $totalRows;
- protected $__schemaType = 'Google_TableSchema';
- protected $__schemaDataType = '';
- public $schema;
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setRows(/** array(Google_TableRow) */ $rows) {
- $this->assertIsArray($rows, 'Google_TableRow', __METHOD__);
- $this->rows = $rows;
- }
- public function getRows() {
- return $this->rows;
- }
- public function setJobReference(Google_JobReference $jobReference) {
- $this->jobReference = $jobReference;
- }
- public function getJobReference() {
- return $this->jobReference;
- }
- public function setJobComplete($jobComplete) {
- $this->jobComplete = $jobComplete;
- }
- public function getJobComplete() {
- return $this->jobComplete;
- }
- public function setTotalRows($totalRows) {
- $this->totalRows = $totalRows;
- }
- public function getTotalRows() {
- return $this->totalRows;
- }
- public function setSchema(Google_TableSchema $schema) {
- $this->schema = $schema;
- }
- public function getSchema() {
- return $this->schema;
- }
- }