cacheHit = $cacheHit; } /** * @return bool */ public function getCacheHit() { return $this->cacheHit; } /** * @param ErrorProto[] */ public function setErrors($errors) { $this->errors = $errors; } /** * @return ErrorProto[] */ public function getErrors() { return $this->errors; } /** * @param string */ public function setEtag($etag) { $this->etag = $etag; } /** * @return string */ public function getEtag() { return $this->etag; } /** * @param bool */ public function setJobComplete($jobComplete) { $this->jobComplete = $jobComplete; } /** * @return bool */ public function getJobComplete() { return $this->jobComplete; } /** * @param JobReference */ public function setJobReference(JobReference $jobReference) { $this->jobReference = $jobReference; } /** * @return JobReference */ public function getJobReference() { return $this->jobReference; } /** * @param string */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * @param string */ public function setNumDmlAffectedRows($numDmlAffectedRows) { $this->numDmlAffectedRows = $numDmlAffectedRows; } /** * @return string */ public function getNumDmlAffectedRows() { return $this->numDmlAffectedRows; } /** * @param string */ public function setPageToken($pageToken) { $this->pageToken = $pageToken; } /** * @return string */ public function getPageToken() { return $this->pageToken; } /** * @param TableRow[] */ public function setRows($rows) { $this->rows = $rows; } /** * @return TableRow[] */ public function getRows() { return $this->rows; } /** * @param TableSchema */ public function setSchema(TableSchema $schema) { $this->schema = $schema; } /** * @return TableSchema */ public function getSchema() { return $this->schema; } /** * @param string */ public function setTotalBytesProcessed($totalBytesProcessed) { $this->totalBytesProcessed = $totalBytesProcessed; } /** * @return string */ public function getTotalBytesProcessed() { return $this->totalBytesProcessed; } /** * @param string */ public function setTotalRows($totalRows) { $this->totalRows = $totalRows; } /** * @return string */ public function getTotalRows() { return $this->totalRows; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GetQueryResultsResponse::class, 'Google_Service_Bigquery_GetQueryResultsResponse');