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